Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions to v4 (#76, thanks @striezel)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jan 15, 2024
1 parent ddd0625 commit 083e024
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
version: [9, 10, 11]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install GCC ${{ matrix.version }}
run: sudo apt-get install -y gcc-${{ matrix.version }} g++-${{ matrix.version }}
- name: Configure, build and run tests
Expand All @@ -29,7 +29,7 @@ jobs:
version: [11, 12]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Clang ${{ matrix.version }}
run: sudo apt-get install -y clang-${{ matrix.version }}
- name: Configure, build and run tests
Expand All @@ -50,7 +50,7 @@ jobs:
configuration: [Debug, Release]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure tests
run: cmake -S . -B build
- name: Build tests
Expand Down

0 comments on commit 083e024

Please sign in to comment.