Skip to content

Commit

Permalink
GitHub workflows: use {upload,download}-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilck committed Sep 13, 2024
1 parent ee3a701 commit 1d90f23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: create ABI
run: make -Orecurse -j$(grep -c ^processor /proc/cpuinfo) abi.tar.gz
- name: save ABI
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: abi
path: abi
Expand All @@ -56,7 +56,7 @@ jobs:
run: make abi-test
- name: save differences
if: ${{ steps.compare.outcome == 'failure' }}
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: abi-test
path: abi-test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/foreign.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: create binary archive
run: make test-progs.tar
- name: upload binary archive
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: cross-${{ matrix.os }}-${{ matrix.arch }}
path: test-progs.tar
Expand All @@ -61,7 +61,7 @@ jobs:
run: echo CONTAINER_ARCH="arm/v7" >> $GITHUB_ENV
if: ${{ matrix.arch == 'armhf' }}
- name: download binary archive
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: cross-${{ matrix.os }}-${{ matrix.arch }}
- name: unpack binary archive
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
run: echo CONTAINER_ARCH="arm/v7" >> $GITHUB_ENV
if: ${{ matrix.arch == 'armhf' }}
- name: download binary archive
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: cross-${{ matrix.os }}-${{ matrix.arch }}
- name: unpack binary archive
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: create binary archive
run: make ${{ env.ARCHIVE_TGT }}
- name: upload binary archive
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: native-${{ matrix.os }}
path: ${{ env.ARCHIVE_TGT }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
uses: actions/checkout@v1

- name: download binary archive
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: native-${{ matrix.os }}
- name: unpack binary archive
Expand Down

0 comments on commit 1d90f23

Please sign in to comment.