Skip to content

Commit

Permalink
Merge pull request #3301 from travier/main-github-artifact-v4
Browse files Browse the repository at this point in the history
github/workflows/tests: Update actions/upload-artifact to v4
  • Loading branch information
travier authored Sep 13, 2024
2 parents 81867f0 + db4be85 commit b18e78b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Build
run: cd tests/inst && cargo build --verbose --release
- name: Upload binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ostree-test
path: tests/inst/target/release/ostree-test
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
./configure --with-curl --with-selinux --with-dracut=yesbutnoconf --with-composefs &&
make -j 4 && make install DESTDIR=$(pwd)/install && tar -c -C install --zstd -f inst.tar.zst .
- name: Upload binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: inst.tar.zst
path: inst.tar.zst
Expand All @@ -106,13 +106,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download install tree
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: inst.tar.zst
- name: Install
run: tar -C / -xvf inst.tar.zst && rm -f inst.tar.zst
- name: Download test binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ostree-test
- name: Install
Expand Down

0 comments on commit b18e78b

Please sign in to comment.