From 8a30c278841d6fe709a6162ef4201c4db0ad58ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 12:58:49 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/calibration.yml | 14 +++++++------- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/pages.yml | 2 +- .github/workflows/release.yml | 8 ++++---- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/calibration.yml b/.github/workflows/calibration.yml index 7867cdc..5f6afa2 100644 --- a/.github/workflows/calibration.yml +++ b/.github/workflows/calibration.yml @@ -20,7 +20,7 @@ jobs: matrix: ${{ steps.matrix.outputs.matrix }} steps: - name: Checkout Reforge - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -50,7 +50,7 @@ jobs: cp calibration/reforge.toml calibration-bundle/calibration/reforge.toml - name: Upload calibration tools - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: calibration-tools path: calibration-bundle @@ -65,7 +65,7 @@ jobs: matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} steps: - name: Download calibration tools - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: calibration-tools path: calibration-run @@ -118,7 +118,7 @@ jobs: --output reports/audit.json - name: Upload complete calibration evidence - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: calibration-${{ matrix.commit }} path: reports @@ -130,13 +130,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Download calibration tools - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: calibration-tools path: calibration-run - name: Download calibration evidence - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: pattern: calibration-* path: evidence @@ -154,7 +154,7 @@ jobs: "${audit_args[@]}" | tee promotion-verification.json - name: Upload promotion verification - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: calibration-promotion-verification path: promotion-verification.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1583478..3df6da3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v7 - name: Install Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 22 cache: npm @@ -57,7 +57,7 @@ jobs: - name: Upload browser test report if: ${{ !cancelled() }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: report-app-playwright path: | @@ -97,7 +97,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -125,7 +125,7 @@ jobs: - macos-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -163,7 +163,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -215,7 +215,7 @@ jobs: - name: Upload self-audit evidence if: ${{ !cancelled() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: reforge-self-audit path: target/self-audit diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index cf41f86..57afb23 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -38,7 +38,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Install Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 22 cache: npm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a99976..b1150bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -81,7 +81,7 @@ jobs: } - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: | @@ -96,13 +96,13 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: artifacts merge-multiple: true - name: Publish release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: artifacts/* generate_release_notes: true