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
14 changes: 7 additions & 7 deletions .github/workflows/calibration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
}

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact }}
path: |
Expand All @@ -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
Loading