Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed May 2, 2024
1 parent ecf89ac commit ed23b2d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: install ninja
run: sudo apt install ninja-build
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: clone-vcpkg
working-directory: "${{runner.temp}}"
run: >
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
steps:
- name: install ninja
run: sudo apt install ninja-build
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: cache-vcpkg
id: cache-vcpkg
uses: actions/cache@v4
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
restore-keys: |
vcpkg-${{ env.vcpkg_SHA }}-build-msvc-2019-2-
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: configure
run: |
Expand All @@ -159,7 +159,7 @@ jobs:
steps:
- name: install ninja
run: brew install ninja
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: clone-vcpkg
working-directory: "${{runner.temp}}"
run: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: install tools
run: sudo apt install ninja-build lcov
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: clone-vcpkg
working-directory: "${{runner.temp}}"
run: >
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: install-dependencies
run: sudo apt install ninja-build libboost-dev libboost-program-options-dev nlohmann-json3-dev libabsl-dev
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: configure
run: >
cmake -S . -B ${{runner.temp}}/build -GNinja -DBUILD_TESTING=OFF
Expand All @@ -37,7 +37,7 @@ jobs:
- name: install-dependencies
run: >
sudo apt install ninja-build libboost-dev libboost-program-options-dev nlohmann-json3-dev libabsl-dev
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: configure
run: >
cmake -S . -B ${{runner.temp}}/build -GNinja
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: clang-format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: clang-format
run: >
git ls-files -z -- '*.h' '*.cc' |
Expand All @@ -25,7 +25,7 @@ jobs:
name: cmake-format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: install cmake-format
run: pip install cmakelang==0.6.13
- name: cmake-format
Expand All @@ -39,7 +39,7 @@ jobs:
name: generated-files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: install ninja
run: sudo apt install moreutils
- name: regenerate-build-examples
Expand Down

0 comments on commit ed23b2d

Please sign in to comment.