Skip to content

Commit

Permalink
ci: update actions/checkout from v2 to v3
Browse files Browse the repository at this point in the history
Signed-off-by: Radostin Stoyanov <[email protected]>
  • Loading branch information
rst0git committed Sep 3, 2023
1 parent c6ac79f commit 65e2aa8
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpine-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
target: [GCC=1, CLANG=1]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Alpine ${{ matrix.target }} Test
run: sudo -E make -C scripts/ci alpine ${{ matrix.target }}
2 changes: 1 addition & 1 deletion .github/workflows/archlinux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Arch Linux Test
run: sudo -E make -C scripts/ci archlinux
2 changes: 1 addition & 1 deletion .github/workflows/compat-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
target: [GCC, CLANG]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Compat Tests (${{ matrix.target }})
run: sudo -E make -C scripts/ci local COMPAT_TEST=y ${{ matrix.target }}=1
2 changes: 1 addition & 1 deletion .github/workflows/cross-compile-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
branches: [criu-dev, master]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ matrix.branches }}
- name: Run Cross Compilation Targets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
target: mips64el-unstable-cross

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Cross Compilation Targets
run: >
sudo make -C scripts/ci ${{ matrix.target }}
2 changes: 1 addition & 1 deletion .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Docker Test (${{ matrix.os }})
run: sudo make -C scripts/ci docker-test
2 changes: 1 addition & 1 deletion .github/workflows/fedora-asan-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Fedora ASAN Test
run: sudo -E make -C scripts/ci fedora-asan
2 changes: 1 addition & 1 deletion .github/workflows/fedora-rawhide-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Fedora Rawhide Test
# We need to pass environment variables from the CI environment to
# distinguish between CI environments. However, we need to make sure that
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcov-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Coverage Tests
run: sudo -E make -C scripts/ci local GCOV=1
- name: Run gcov
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Java Test
run: sudo make -C scripts/ci java-test
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install tools
run: sudo dnf -y install git make python3-flake8 xz clang-tools-extra which codespell git-clang-format ShellCheck

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set git safe directory
# https://github.com/actions/checkout/issues/760
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podman-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Podman Test
run: sudo make -C scripts/ci podman-test
2 changes: 1 addition & 1 deletion .github/workflows/stream-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run CRIU Image Streamer Test
run: sudo -E make -C scripts/ci local STREAM_TEST=1
2 changes: 1 addition & 1 deletion .github/workflows/x86-64-clang-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run X86_64 CLANG Test
run: sudo make -C scripts/ci x86_64 CLANG=1
2 changes: 1 addition & 1 deletion .github/workflows/x86-64-gcc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run X86_64 GCC Test
run: sudo make -C scripts/ci x86_64

0 comments on commit 65e2aa8

Please sign in to comment.