Skip to content

Commit

Permalink
CI: update upload-artifact and setup-qemu-user actions to fix warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Richter <[email protected]>
  • Loading branch information
erichte-ibm committed Oct 10, 2024
1 parent c863fa4 commit 4fdd714
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
submodules: 'recursive'

- name: prepare qemu
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: "${{ matrix.arch }}"

Expand All @@ -49,9 +49,9 @@ jobs:
run: docker run -t --platform linux/${{ matrix.arch }} -v $(pwd):/build ${IMAGE_NAME} bash -c "cd build && ci/build-rpm.sh"

- name: upload rpms
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch }}
name: ${{ matrix.image }}-${{ matrix.arch }}
path: rpms/*

staticbuild:
Expand All @@ -67,7 +67,7 @@ jobs:
with:
submodules: 'recursive'

- uses: docker/setup-qemu-action@v2
- uses: docker/setup-qemu-action@v3
with:
platforms: "${{ matrix.arch }}"

Expand All @@ -78,9 +78,9 @@ jobs:
run: docker run -t --platform linux/${{ matrix.arch }} -v $(pwd):/build -e ARCH=${{ matrix.arch }} alpine-${{ matrix.arch }} bash -c "cd build && ci/build-static.sh"

- name: upload rpms
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: static
name: static-${{ matrix.arch }}
path: secvarctl.${{ matrix.arch }}

release:
Expand Down

0 comments on commit 4fdd714

Please sign in to comment.