Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/actions/build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ runs:
steps:
- name: Login to Docker Hub
if: inputs.dockerhub-username != '' && inputs.dockerhub-token != ''
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: docker.io
username: ${{ inputs.dockerhub-username }}
Expand Down Expand Up @@ -151,7 +151,7 @@ runs:

- name: Build image (tar output)
if: inputs.output-type == 'tar'
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
context: ./build
file: ./build/Containerfile
Expand Down Expand Up @@ -201,7 +201,7 @@ runs:

- name: Build image (registry output)
if: inputs.output-type == 'registry'
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
context: ./build
file: ./build/Containerfile
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ runs:
with:
enable-cache: true
# Install a specific version of uv.
version: "0.10.0"
version: "0.11.8"

- name: Wait before retrying uv install
if: steps.setup-uv.outcome == 'failure'
Expand All @@ -144,7 +144,7 @@ runs:
with:
enable-cache: true
# Install a specific version of uv.
version: "0.10.0"
version: "0.11.8"

# ── retry() shell helper ───────────────────────────────────────────
- name: Export retry helper function
Expand Down Expand Up @@ -210,7 +210,7 @@ runs:
# Also installed when install-devcontainer-cli is true (npm is required)
- name: Install Node.js
if: inputs.install-node == 'true' || inputs.install-devcontainer-cli == 'true'
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ inputs.node-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/test-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:

- name: Cache pre-commit hooks
if: inputs.suite == 'all' || inputs.suite == 'lint'
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down Expand Up @@ -147,7 +147,7 @@ runs:

- name: Upload coverage report
if: always() && inputs.suite == 'all'
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coverage-report
path: coverage.xml
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
output-file: /tmp/image.tar

- name: Upload image artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: container-image-${{ steps.version.outputs.version }}-amd64
path: /tmp/image.tar
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- name: Upload test artifacts on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: integration-test-artifacts
path: |
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:

- name: Upload security reports as artifacts
if: always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: python-security-reports
path: |
Expand Down Expand Up @@ -256,9 +256,9 @@ jobs:
path: /tmp

- name: Scan image for vulnerabilities
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'table'
severity: 'HIGH,CRITICAL'
Expand All @@ -268,9 +268,9 @@ jobs:

- name: Report unfixed HIGH/CRITICAL vulnerabilities (non-blocking)
if: always()
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'table'
severity: 'HIGH,CRITICAL'
Expand All @@ -279,28 +279,28 @@ jobs:

- name: Report MEDIUM severity vulnerabilities (non-blocking)
if: always()
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'table'
severity: 'MEDIUM'
exit-code: '0' # Non-blocking report

- name: Generate container SBOM (CycloneDX)
if: always()
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'cyclonedx'
output: 'sbom-cyclonedx.json'

- name: Generate SARIF report
if: always()
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'sarif'
output: 'trivy-results.sarif'
Expand All @@ -309,7 +309,7 @@ jobs:

- name: Upload SBOM artifact
if: always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: sbom-${{ needs.build-image.outputs.version }}-amd64
path: sbom-cyclonedx.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -783,9 +783,9 @@ jobs:
ref: ${{ needs.finalize.outputs.finalize_sha }}

- name: Scan image for vulnerabilities
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image.tar
format: 'table'
severity: 'HIGH,CRITICAL'
Expand All @@ -794,7 +794,7 @@ jobs:
trivyignores: '.trivyignore'

- name: Upload tested image
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: container-image-${{ needs.validate.outputs.publish_version }}-${{ matrix.arch }}
path: /tmp/image.tar
Expand Down Expand Up @@ -1035,7 +1035,7 @@ jobs:
format: spdx-json

- name: Upload SBOM artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: sbom-${{ needs.validate.outputs.publish_version }}
path: /tmp/sbom.spdx.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '20'

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:

- name: Scan latest image for all vulnerabilities
if: steps.pull.outcome == 'success'
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image-latest.tar
format: 'table'
severity: 'UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL'
Expand All @@ -78,9 +78,9 @@ jobs:
id: gate
if: steps.pull.outcome == 'success'
continue-on-error: true
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image-latest.tar
format: 'table'
severity: 'HIGH,CRITICAL'
Expand All @@ -90,18 +90,18 @@ jobs:

- name: Generate latest image SBOM (CycloneDX)
if: steps.pull.outcome == 'success'
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image-latest.tar
format: 'cyclonedx'
output: 'sbom-latest-cyclonedx.json'

- name: Generate latest image SARIF report
if: steps.pull.outcome == 'success'
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: 'v0.69.3'
version: 'v0.70.0'
input: /tmp/image-latest.tar
format: 'sarif'
output: 'trivy-latest-results.sarif'
Expand All @@ -110,7 +110,7 @@ jobs:

- name: Upload latest SBOM artifact
if: steps.pull.outcome == 'success'
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: sbom-latest
path: sbom-latest-cyclonedx.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Restore sync state (last synced timestamp)
id: restore-state
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .sync-state
key: sync-issues-state-${{ github.repository }}
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:

- name: Save sync state
if: always()
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .sync-state
key: sync-issues-state-${{ github.repository }}
4 changes: 2 additions & 2 deletions assets/workspace/.github/workflows/sync-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Restore sync state (last synced timestamp)
id: restore-state
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .sync-state
key: sync-issues-state-${{ github.repository }}
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:

- name: Save sync state
if: always()
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .sync-state
key: sync-issues-state-${{ github.repository }}
Loading