Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions to v3 (#9, thanks @striezel)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Dec 1, 2022
1 parent 34a4629 commit f605346
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

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

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

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

- name: Install Clang ${{ matrix.version }}
run: sudo apt-get install -y clang-${{ matrix.version }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Configure tests
run: cmake -S . -B build
Expand All @@ -94,4 +94,3 @@ jobs:
- name: Run tests
working-directory: build
run: ctest -C Release --output-on-failure -j 4

0 comments on commit f605346

Please sign in to comment.