From a554280559e23e591941f6c98205c7c933eb30af Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 11 Mar 2026 14:40:46 +0000 Subject: [PATCH] ci: Bump actions/checkout, actions/upload-artifact. Signed-off-by: Jason Volk --- .github/workflows/autocopr.yml | 2 +- .github/workflows/bake.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/autocopr.yml b/.github/workflows/autocopr.yml index 3d23f50e..4bc83d16 100644 --- a/.github/workflows/autocopr.yml +++ b/.github/workflows/autocopr.yml @@ -20,7 +20,7 @@ jobs: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: aidandenlinger/autocopr@v1 # Or a specific release tag, or commit with: diff --git a/.github/workflows/bake.yml b/.github/workflows/bake.yml index 48da4c2a..b4ac0fc1 100644 --- a/.github/workflows/bake.yml +++ b/.github/workflows/bake.yml @@ -116,7 +116,7 @@ jobs: machine: ${{fromJSON(inputs.machines)}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -228,7 +228,7 @@ jobs: !failure() && !cancelled() && fromJSON(inputs.artifact)[matrix.bake_target].dst - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: path: _artifact/* name: ${{matrix.cargo_profile}}-${{matrix.feat_set}}-${{matrix.sys_target}}-${{fromJSON(inputs.artifact)[matrix.bake_target].dst}} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index eaef09e4..5347d1ea 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -103,7 +103,7 @@ jobs: include: ${{fromJSON(inputs.includes)}} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c8587299..eb946273 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -389,7 +389,7 @@ jobs: include: ${{fromJSON(inputs.includes)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Execute id: execute env: @@ -420,7 +420,7 @@ jobs: - if: success() || failure() && steps.execute.outcome == 'failure' name: Upload New Results id: upload-result - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: complement_results-${{matrix.feat_set}}-${{matrix.sys_name}}-${{matrix.sys_target}}.jsonl path: ./tests/complement/results.jsonl @@ -428,7 +428,7 @@ jobs: - if: success() || (failure() && steps.execute.outcome == 'failure') name: Upload Log Output id: upload-output - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: complement_output-${{matrix.feat_set}}-${{matrix.sys_name}}-${{matrix.sys_target}}.jsonl path: ./tests/complement/logs.jsonl