From c7212118068a84e3974372fcbfb43d4ff2993b4b Mon Sep 17 00:00:00 2001 From: igor-soldev Date: Fri, 12 Jun 2026 08:27:53 +0200 Subject: [PATCH] feat: update to version 1.0.8 --- .github/workflows/infrascan-ci.yml | 2 +- README.md | 2 +- cli.py | 2 +- docs/PIPELINE_INTEGRATION.md | 4 ++-- docs/RELEASE.md | 12 ++++++------ docs/RELEASE_NOTES_1.0.7.md | 1 - docs/RELEASE_NOTES_1.0.8.md | 12 ++++++++++++ examples/pipelines/github-actions-k8s.yml | 2 +- examples/pipelines/github-actions.yml | 2 +- templates/index.html | 15 ++++++++++++--- templates/report.html | 8 ++++---- templates/supported_projects.html | 2 +- 12 files changed, 42 insertions(+), 22 deletions(-) create mode 100644 docs/RELEASE_NOTES_1.0.8.md diff --git a/.github/workflows/infrascan-ci.yml b/.github/workflows/infrascan-ci.yml index de2d2e4..266933f 100644 --- a/.github/workflows/infrascan-ci.yml +++ b/.github/workflows/infrascan-ci.yml @@ -17,7 +17,7 @@ jobs: chmod 777 infrascan-reports - name: Run InfraScan - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: scanner: comprehensive format: html diff --git a/README.md b/README.md index 8ff2a98..db9705c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ jobs: - uses: actions/checkout@v4 - name: Run InfraScan - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: scanner: comprehensive format: html diff --git a/cli.py b/cli.py index ad60039..ff89680 100755 --- a/cli.py +++ b/cli.py @@ -19,7 +19,7 @@ def init(*args, **kwargs): pass from reporter.grading import ReportGenerator from reporter.html_generator import generate_standalone_html -__version__ = "1.0.7" +__version__ = "1.0.8" # Setup basic logging logging.basicConfig(level=logging.ERROR, format='%(levelname)s: %(message)s') diff --git a/docs/PIPELINE_INTEGRATION.md b/docs/PIPELINE_INTEGRATION.md index 8dfbe0b..959e973 100644 --- a/docs/PIPELINE_INTEGRATION.md +++ b/docs/PIPELINE_INTEGRATION.md @@ -85,7 +85,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run Scan - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: format: html out: report.html @@ -170,7 +170,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run K8s Scan - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: framework: kubernetes scanner: comprehensive diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 0758fdb..8f98c1b 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -24,7 +24,7 @@ docker login ``` ### Build and Push -Replace `` with the new version (e.g., `v1.0.7`). +Replace `` with the new version (e.g., `v1.0.8`). ```bash # Build docker build -t soldevelo/infrascan:latest -t soldevelo/infrascan: . @@ -43,8 +43,8 @@ InfraScan is published as a GitHub Action. Proper tagging is critical for users ### Creating the Version Tag ```bash # Create a new version tag -git tag -a v1.0.7 -m "Release v1.0.7" -git push origin v1.0.7 +git tag -a v1.0.8 -m "Release v1.0.8" +git push origin v1.0.8 ``` > [!CAUTION] @@ -55,7 +55,7 @@ git push origin v1.0.7 ```bash # Update the local major tag to the latest commit -git tag -fa v1 -m "Update v1 to v1.0.7" +git tag -fa v1 -m "Update v1 to v1.0.8" # Force push the major tag to the remote git push origin v1 --force @@ -67,8 +67,8 @@ git push origin v1 --force 1. Go to the [InfraScan Releases](https://github.com/soldevelo/infrascan/releases) page. 2. Click **Draft a new release**. -3. Select the tag you just pushed (e.g., `v1.0.7`). -4. Set the Release Title (e.g., `InfraScan v1.0.7`). +3. Select the tag you just pushed (e.g., `v1.0.8`). +4. Set the Release Title (e.g., `InfraScan v1.0.8`). 5. Describe the changes (you can use the "Generate release notes" button). 6. **Marketplace Publication**: Ensure the checkbox **"Publish this Action to the GitHub Marketplace"** is checked. 7. Verify the `action.yml` metadata is correct in the preview. diff --git a/docs/RELEASE_NOTES_1.0.7.md b/docs/RELEASE_NOTES_1.0.7.md index 4313e56..00c9b62 100644 --- a/docs/RELEASE_NOTES_1.0.7.md +++ b/docs/RELEASE_NOTES_1.0.7.md @@ -17,4 +17,3 @@ This release contains all changes since `v1.0.6`. - The application version has been updated to `1.0.7`. - Documentation and CI/examples have been updated to reference `v1.0.7`. -- Use the `release/1.0.7` branch to create the pull request against `main`. diff --git a/docs/RELEASE_NOTES_1.0.8.md b/docs/RELEASE_NOTES_1.0.8.md new file mode 100644 index 0000000..8a3a287 --- /dev/null +++ b/docs/RELEASE_NOTES_1.0.8.md @@ -0,0 +1,12 @@ +# InfraScan 1.0.8 Release Notes + +This release contains all changes since `v1.0.7`. + +## Highlights + +- `feat: Add support for monitoring of InfraScan projects` + +## Notes + +- The application version has been updated to `1.0.8`. +- Documentation and CI/examples have been updated to reference `v1.0.8`. diff --git a/examples/pipelines/github-actions-k8s.yml b/examples/pipelines/github-actions-k8s.yml index b3a2d04..0854adb 100644 --- a/examples/pipelines/github-actions-k8s.yml +++ b/examples/pipelines/github-actions-k8s.yml @@ -25,7 +25,7 @@ jobs: chmod 777 infrascan-reports - name: Run InfraScan on Kubernetes YAMLs - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: scanner: comprehensive framework: kubernetes diff --git a/examples/pipelines/github-actions.yml b/examples/pipelines/github-actions.yml index d88c35a..b36d76f 100644 --- a/examples/pipelines/github-actions.yml +++ b/examples/pipelines/github-actions.yml @@ -24,7 +24,7 @@ jobs: chmod 777 infrascan-reports - name: Run InfraScan - uses: soldevelo/infrascan@v1.0.7 + uses: soldevelo/infrascan@v1.0.8 with: scanner: comprehensive format: html diff --git a/templates/index.html b/templates/index.html index ebaf302..162f7d2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -227,6 +227,15 @@

🕒 Recent Scans

+
+
+ v1.0.8 + June 12, 2026 +
+
    +
  • UX/UI: Add support for monitoring of InfraScan projects.
  • +
+
v1.0.7 @@ -410,7 +419,7 @@

🤖 GitHub Actions

run: | docker run --rm \ -v ${{ github.workspace }}:/scan \ - soldevelo/infrascan:v1.0.7 \ + soldevelo/infrascan:v1.0.8 \ --fail-on high_critical"> Copy @@ -421,7 +430,7 @@

🤖 GitHub Actions

run: | docker run --rm \ -v ${{ github.workspace }}:/scan \ - soldevelo/infrascan:v1.0.7 \ + soldevelo/infrascan:v1.0.8 \ --fail-on high_critical
{% endraw %} @@ -536,7 +545,7 @@

Need help implementing these fixes?

-

InfraScan v1.0.7 © 2026 SolDevelo. Advanced Infrastructure Auditor.

+

InfraScan v1.0.8 © 2026 SolDevelo. Advanced Infrastructure Auditor.

This tool is Open Source – contributions are welcome! diff --git a/templates/report.html b/templates/report.html index 38ecbdf..e8d328f 100644 --- a/templates/report.html +++ b/templates/report.html @@ -230,7 +230,7 @@

🕒 Recent Scans

- v1.0.7 + v1.0.6 May 13, 2026
    @@ -383,7 +383,7 @@

    🤖 GitHub Actions

    run: | docker run --rm \ -v ${{ github.workspace }}:/scan \ - soldevelo/infrascan:v1.0.7 \ + soldevelo/infrascan:v1.0.8 \ --fail-on high_critical"> Copy @@ -394,7 +394,7 @@

    🤖 GitHub Actions

    run: | docker run --rm \ -v ${{ github.workspace }}:/scan \ - soldevelo/infrascan:v1.0.7 \ + soldevelo/infrascan:v1.0.8 \ --fail-on high_critical
{% endraw %} @@ -548,7 +548,7 @@

Recommendations

-

InfraScan v1.0.7 © 2026 SolDevelo. Advanced Infrastructure Auditor.

+

InfraScan v1.0.8 © 2026 SolDevelo. Advanced Infrastructure Auditor.

This tool is Open Source – contributions are welcome! diff --git a/templates/supported_projects.html b/templates/supported_projects.html index ba9c2d9..e035b73 100644 --- a/templates/supported_projects.html +++ b/templates/supported_projects.html @@ -172,7 +172,7 @@

💼 Supported Projects

-

InfraScan v1.0.7 © 2026 SolDevelo. Advanced Infrastructure Auditor.

+

InfraScan v1.0.8 © 2026 SolDevelo. Advanced Infrastructure Auditor.

This tool is Open Source – contributions are welcome!