Skip to content

Commit 7b3fb32

Browse files
Bump actions/checkout from 4 to 5 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6516495 commit 7b3fb32

16 files changed

+18
-18
lines changed

.github/workflows/aarch64_linux_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04-arm
1414
steps:
1515
- name: Check out repository code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Build
1818
run: make --directory=bazel/ci arm64_build
1919
- name: Test

.github/workflows/aarch64_linux_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
TARGET: ${{ matrix.targets[0] }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Build
2626
run: make --directory=cmake/ci ${TARGET}_build
2727
- name: Test

.github/workflows/amd64_linux_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out repository code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Set up QEMU
1818
uses: docker/setup-qemu-action@v3
1919
- name: Check docker

.github/workflows/amd64_linux_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
make:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Env
1717
run: make --directory=cmake/ci amd64_env
1818
- name: Devel

.github/workflows/amd64_macos_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images
1515
steps:
1616
- name: Check out repository code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Bazel
1919
run: |
2020
brew update

.github/workflows/amd64_macos_cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
CTEST_OUTPUT_ON_FAILURE: 1
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Check cmake
2020
run: cmake --version
2121
- name: Configure
@@ -31,7 +31,7 @@ jobs:
3131
env:
3232
CTEST_OUTPUT_ON_FAILURE: 1
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Check cmake
3636
run: cmake --version
3737
- name: Configure

.github/workflows/amd64_windows_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: windows-latest
1515
steps:
1616
- name: Check out repository code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Bazel
1919
run: |
2020
choco install bazel

.github/workflows/amd64_windows_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
CTEST_OUTPUT_ON_FAILURE: 1
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Configure
1919
run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release
2020
- name: Build

.github/workflows/arm64_macos_bazel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: macos-latest # Using M1 processors, ref: https://github.com/actions/runner-images
1515
steps:
1616
- name: Check out repository code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Bazel
1919
run: |
2020
brew update

.github/workflows/arm64_macos_cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
CTEST_OUTPUT_ON_FAILURE: 1
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Check cmake
2020
run: cmake --version
2121
- name: Configure
@@ -31,7 +31,7 @@ jobs:
3131
env:
3232
CTEST_OUTPUT_ON_FAILURE: 1
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Check cmake
3636
run: cmake --version
3737
- name: Configure

0 commit comments

Comments
 (0)