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/advanced-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
color: blue

- name: Upload coverage report
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v6
with:
name: coverage-report
retention-days: 30
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: make build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: build-artifacts-${{ needs.config.outputs.package-version }}
retention-days: 60
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
fail-on-cache-miss: false

- name: Download test results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: test-results/

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ jobs:

- name: Run Hadolint Dockerfile scan
if: matrix.python-version == needs.config.outputs.default-python-version
uses: hadolint/hadolint-action@v3.1.0
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: Dockerfile
format: sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
make ci-build-sbom

- name: Upload SBOM artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: reports-sbom-${{ needs.config.outputs.package-version }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/health-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
color: blue

- name: Create health report issue
uses: peter-evans/create-issue-from-file@v5
uses: peter-evans/create-issue-from-file@v6
with:
title: "Weekly Health Report (${{ env.START_DATE }} to ${{ env.END_DATE }})"
content-filepath: health-report.md
Expand All @@ -151,7 +151,7 @@ jobs:
automated-report

- name: Upload artifacts
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v6
with:
name: health-report-${{ env.END_DATE }}
retention-days: 30
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
continue-on-error: ${{ inputs.continue-on-error }}

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: test-results-${{ inputs.test-type }}-${{ inputs.os }}-py${{ inputs.python-version || inputs.default-python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
fetch-depth: 0

- name: Check for secrets with TruffleHog
uses: trufflesecurity/trufflehog@v3.92.4
uses: trufflesecurity/trufflehog@v3.92.5
with:
path: ./
base: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
steps:
- name: Generate GitHub App Token
id: app-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

steps:
- name: Download all test results
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: test-results/

Expand Down
Loading