Skip to content

Commit

Permalink
ci: Move to actions/checkout@v3 version
Browse files Browse the repository at this point in the history
v2 has been deprecated for a long time, and is throwing warnings.
  • Loading branch information
martinpitt committed Aug 2, 2023
1 parent 659fb54 commit dc580fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
image: fedora:rawhide
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: dnf install --nogpgcheck -y git-core checkpolicy policycoreutils-devel make m4 findutils
- run: git clone --depth=1 https://github.com/containers/container-selinux.git /tmp/container-selinux
- run: cp /tmp/container-selinux/container.* policy/modules/contrib
Expand All @@ -21,7 +21,7 @@ jobs:
options: --security-opt seccomp=unconfined
steps:
- run: dnf install --nogpgcheck -y make git-core rpm-build 'dnf-command(builddep)'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# https://github.blog/2022-04-12-git-security-vulnerability-announced/
- run: git config --global --add safe.directory "$PWD"
- run: make -C .copr srpm outdir="$PWD"
Expand Down

0 comments on commit dc580fb

Please sign in to comment.