Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions to v4 (#82, thanks @striezel)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jan 14, 2024
1 parent bc08bf8 commit cd283b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
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 }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
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 }}
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Configure tests
run: cmake -S . -B build
Expand Down

0 comments on commit cd283b3

Please sign in to comment.