Skip to content

Commit 05880e5

Browse files
authored
Merge pull request #2913 from vdice/chore/ci-artifact-bump-v4
chore(.github): bump upload-artifact to v4
2 parents dd31e6e + 4a9b0a7 commit 05880e5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
CARGO_INCREMENTAL: 0
7373

7474
- name: "Archive executable artifact"
75-
uses: actions/upload-artifact@v3
75+
uses: actions/upload-artifact@v4
7676
with:
7777
name: spin-ubuntu-latest
7878
path: target/release/spin
@@ -108,7 +108,7 @@ jobs:
108108
BUILD_SPIN_EXAMPLES: 0
109109

110110
- name: "Archive executable artifact"
111-
uses: actions/upload-artifact@v3
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: spin-static-${{ matrix.config.arch }}
114114
path: target/${{ matrix.config.target }}/release/spin
@@ -136,7 +136,7 @@ jobs:
136136
CARGO_INCREMENTAL: 0
137137

138138
- name: "Archive executable artifact"
139-
uses: actions/upload-artifact@v3
139+
uses: actions/upload-artifact@v4
140140
with:
141141
name: spin-${{ matrix.os }}
142142
path: target/release/spin${{ matrix.os == 'windows-latest' && '.exe' || '' }}

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: cargo build --workspace --all-targets --features all-tests --features openssl/vendored
2626

2727
- name: "Archive executable artifact"
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: spin-ubuntu-latest
3131
path: target/debug/spin
@@ -68,7 +68,7 @@ jobs:
6868
verbose: true
6969

7070
- name: Archive code coverage results
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
if: ${{ github.ref == 'refs/heads/main' }}
7373
with:
7474
name: code-coverage-report

0 commit comments

Comments
 (0)