Skip to content

Commit f7aca36

Browse files
authored
update actions/checkout in GitHub Actions to v3 (#51)
1 parent 22fc549 commit f7aca36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 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

0 commit comments

Comments
 (0)