Skip to content

Commit

Permalink
Merge pull request #2913 from vdice/chore/ci-artifact-bump-v4
Browse files Browse the repository at this point in the history
chore(.github): bump upload-artifact to v4
  • Loading branch information
vdice authored Nov 6, 2024
2 parents dd31e6e + 4a9b0a7 commit 05880e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
CARGO_INCREMENTAL: 0

- name: "Archive executable artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spin-ubuntu-latest
path: target/release/spin
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
BUILD_SPIN_EXAMPLES: 0

- name: "Archive executable artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spin-static-${{ matrix.config.arch }}
path: target/${{ matrix.config.target }}/release/spin
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
CARGO_INCREMENTAL: 0

- name: "Archive executable artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spin-${{ matrix.os }}
path: target/release/spin${{ matrix.os == 'windows-latest' && '.exe' || '' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: cargo build --workspace --all-targets --features all-tests --features openssl/vendored

- name: "Archive executable artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: spin-ubuntu-latest
path: target/debug/spin
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
verbose: true

- name: Archive code coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
name: code-coverage-report
Expand Down

0 comments on commit 05880e5

Please sign in to comment.