Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/infrascan-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
4 changes: 2 additions & 2 deletions docs/PIPELINE_INTEGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ docker login
```

### Build and Push
Replace `<version>` with the new version (e.g., `v1.0.7`).
Replace `<version>` with the new version (e.g., `v1.0.8`).
```bash
# Build
docker build -t soldevelo/infrascan:latest -t soldevelo/infrascan:<version> .
Expand All @@ -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]
Expand All @@ -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
Expand All @@ -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.
Expand Down
1 change: 0 additions & 1 deletion docs/RELEASE_NOTES_1.0.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
12 changes: 12 additions & 0 deletions docs/RELEASE_NOTES_1.0.8.md
Original file line number Diff line number Diff line change
@@ -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`.
2 changes: 1 addition & 1 deletion examples/pipelines/github-actions-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/pipelines/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 12 additions & 3 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,15 @@ <h2 class="recent-scans-title">🕒 Recent Scans</h2>

<div class="tab-content" id="release-notes-tab">
<div class="release-notes-container">
<div class="release-entry">
<div class="release-header">
<span class="version">v1.0.8</span>
<span class="date">June 12, 2026</span>
</div>
<ul class="release-list">
<li><strong>UX/UI</strong>: Add support for monitoring of InfraScan projects.</li>
</ul>
</div>
<div class="release-entry">
<div class="release-header">
<span class="version">v1.0.7</span>
Expand Down Expand Up @@ -410,7 +419,7 @@ <h3>🤖 GitHub Actions</h3>
run: |
docker run --rm \
-v ${{ github.workspace }}:/scan \
soldevelo/infrascan:v1.0.7 \
soldevelo/infrascan:v1.0.8 \
--fail-on high_critical">
<span>Copy</span>
</button>
Expand All @@ -421,7 +430,7 @@ <h3>🤖 GitHub Actions</h3>
<span class="keyword">run:</span> |
docker run --rm \
-v <span class="string">${{ github.workspace }}</span>:/scan \
soldevelo/infrascan<span class="variable">:v1.0.7</span> \
soldevelo/infrascan<span class="variable">:v1.0.8</span> \
--fail-on <span class="string">high_critical</span></code></pre>
</div>
{% endraw %}
Expand Down Expand Up @@ -536,7 +545,7 @@ <h3>Need help implementing these fixes?</h3>
<button id="open-feedback-btn" class="text-link-btn">Leave Feedback</button>
</p>

<p>InfraScan v1.0.7 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p>InfraScan v1.0.8 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top:4px;">This tool is <a
href="https://github.com/SolDevelo/InfraScan" target="_blank"><strong>Open Source</strong></a> –
contributions are welcome!
Expand Down
8 changes: 4 additions & 4 deletions templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h2 class="recent-scans-title">🕒 Recent Scans</h2>
<div class="release-notes-container">
<div class="release-entry">
<div class="release-header">
<span class="version">v1.0.7</span>
<span class="version">v1.0.6</span>
<span class="date">May 13, 2026</span>
</div>
<ul class="release-list">
Expand Down Expand Up @@ -383,7 +383,7 @@ <h3>🤖 GitHub Actions</h3>
run: |
docker run --rm \
-v ${{ github.workspace }}:/scan \
soldevelo/infrascan:v1.0.7 \
soldevelo/infrascan:v1.0.8 \
--fail-on high_critical">
<span>Copy</span>
</button>
Expand All @@ -394,7 +394,7 @@ <h3>🤖 GitHub Actions</h3>
<span class="keyword">run:</span> |
docker run --rm \
-v <span class="string">${{ github.workspace }}</span>:/scan \
soldevelo/infrascan<span class="variable">:v1.0.7</span> \
soldevelo/infrascan<span class="variable">:v1.0.8</span> \
--fail-on <span class="string">high_critical</span></code></pre>
</div>
{% endraw %}
Expand Down Expand Up @@ -548,7 +548,7 @@ <h2>Recommendations</h2>
<button id="open-feedback-btn" class="text-link-btn">Leave Feedback</button>
</p>

<p>InfraScan v1.0.7 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p>InfraScan v1.0.8 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top:4px;">This tool is <a
href="https://github.com/SolDevelo/InfraScan" target="_blank"><strong>Open Source</strong></a> –
contributions are welcome!
Expand Down
2 changes: 1 addition & 1 deletion templates/supported_projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ <h2 class="recent-scans-title">💼 Supported Projects</h2>
<button id="open-feedback-btn" class="text-link-btn">Leave Feedback</button>
</p>

<p>InfraScan v1.0.7 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p>InfraScan v1.0.8 &copy; 2026 SolDevelo. Advanced Infrastructure Auditor.</p>
<p style="font-size: 0.9rem; opacity: 0.8; margin-top:4px;">This tool is <a
href="https://github.com/SolDevelo/InfraScan" target="_blank"><strong>Open Source</strong></a> –
contributions are welcome!
Expand Down
Loading