Skip to content

Commit 0a0aa41

Browse files
authored
Update actions/checkout in GitHub Actions to v3 (#3, thanks @striezel)
1 parent 9edccba commit 0a0aa41

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: Install GCC ${{ matrix.version }}
2727
run: sudo apt-get install -y gcc-${{ matrix.version }} g++-${{ matrix.version }}
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151

5252
steps:
53-
- uses: actions/checkout@v2
53+
- uses: actions/checkout@v3
5454

5555
- name: Install Clang ${{ matrix.version }}
5656
run: sudo apt-get install -y clang-${{ matrix.version }}
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ${{ matrix.os }}
8181

8282
steps:
83-
- uses: actions/checkout@v2
83+
- uses: actions/checkout@v3
8484

8585
- name: Configure tests
8686
run: cmake -S . -B build
@@ -94,4 +94,3 @@ jobs:
9494
- name: Run tests
9595
working-directory: build
9696
run: ctest -C Release --output-on-failure -j 4
97-

0 commit comments

Comments
 (0)