Skip to content

Commit 57cbc54

Browse files
build(deps): bump actions/checkout from 4 to 5 (#1001)
* build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * use hash in pre-commit.yml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexander Hans <ahans@users.noreply.github.com>
1 parent f0f3cc5 commit 57cbc54

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
compiler: [clang++-15, g++-12]
1818
steps:
19-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
19+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2020
- name: Install Dependencies
2121
# Boost must be installed only because the CMake version (3.12) can't
2222
# detect the installed Boost version (1.69)
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
compiler: [clang++, g++]
3939
steps:
40-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
40+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
4141
- name: Install Dependencies
4242
# Boost must be installed only because the CMake version (3.12) can't
4343
# detect the installed Boost version (1.69)
@@ -64,7 +64,7 @@ jobs:
6464
needs: [linux-min]
6565
runs-on: windows-2022
6666
steps:
67-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
67+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
6868
- name: Run Tests
6969
shell: powershell
7070
# Delete the exercises that require Boost to avoid issues with Windows setup.
@@ -80,7 +80,7 @@ jobs:
8080
needs: [linux-min]
8181
runs-on: macOS-latest
8282
steps:
83-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
83+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
8484
- name: Install Boost
8585
run: brew install boost
8686
- name: Run Tests

.github/workflows/hello-world.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Hello World Fails
2222
runs-on: ubuntu-22.04
2323
steps:
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
24+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2525
- name: Check Hello World Fails
2626
run: bin/check-hello-world.sh
2727
env:

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1818
with:
1919
ref: ${{github.event.pull_request.head.sha}}
2020
repository: ${{github.event.pull_request.head.repo.full_name}}

0 commit comments

Comments
 (0)