Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/upload-artifact from 3 to 4 #140

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- run: make ${{ matrix.base }}-image
- run: podman save --format=docker-archive -o image.tar quay.io/security-profiles-operator/selinuxd-${{ matrix.base }}:latest
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.base }}-image-tar
path: image.tar
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Fetch selinuxd logs
run: $RUN cat ${{ env.CONTAINER_NAME }}.logs > ${{ env.CONTAINER_NAME }}.logs
if: ${{ always() }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: e2e-${{ matrix.base }}-logs
path: ${{ env.CONTAINER_NAME }}.logs
Expand All @@ -66,14 +66,14 @@ jobs:
- name: Fetch seccomp profile
run: $RUN cat /tmp/selinuxd-seccomp.json | python -m json.tool > selinuxd-seccomp.json
if: matrix.base == 'fedora'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: seccomp-profile
path: selinuxd-seccomp.json
if: matrix.base == 'fedora'
- name: Fetch selinux policy
run: $RUN cat selinuxd.cil > selinuxd.cil
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: selinux-policy
path: selinuxd.cil
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Fetch selinuxd logs
run: $RUN cat ${{ env.CONTAINER_NAME }}.logs > ${{ env.CONTAINER_NAME }}.logs
if: ${{ always() }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: e2e-${{ matrix.base }}-logs
path: ${{ env.CONTAINER_NAME }}.logs
Expand Down
Loading