Skip to content

Commit 4139377

Browse files
dependabot[bot]Mizux
authored andcommitted
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [bazel-contrib/setup-bazel](https://github.com/bazel-contrib/setup-bazel) and [actions/setup-java](https://github.com/actions/setup-java). 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) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `bazel-contrib/setup-bazel` from 0.8.4 to 0.15.0 - [Release notes](https://github.com/bazel-contrib/setup-bazel/releases) - [Commits](bazel-contrib/setup-bazel@0.8.4...0.15.0) Updates `actions/setup-java` from 3 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: bazel-contrib/setup-bazel dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-java 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 39e602c commit 4139377

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/amd64_linux_bazel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ jobs:
3030
name: Linux•Bazel(${{ matrix.bazel.compilation_mode }})•C++${{ matrix.cpp.version }}•Python${{ matrix.python.version }}
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Check Java
3535
run: java -version
3636
- name: Setup Python
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python.version }}
4040
- name: Check Python
4141
run: |
4242
python --version
4343
python -m platform
44-
- uses: bazel-contrib/setup-bazel@0.8.4
44+
- uses: bazel-contrib/setup-bazel@0.15.0
4545
with:
4646
bazelisk-cache: true
4747
disk-cache: ${{ github.workflow }}
@@ -71,4 +71,4 @@ jobs:
7171
runs-on: ubuntu-latest
7272
needs: native
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5

.github/workflows/amd64_macos_bazel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
name: MacOS•Bazel(${{ matrix.bazel.compilation_mode }})•C++${{ matrix.cpp.version }}•Python${{ matrix.python.version }}
3131
runs-on: macos-13 # last macos intel based runner
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Set Java to OpenJDK 17 (Temurin)
35-
uses: actions/setup-java@v3
35+
uses: actions/setup-java@v5
3636
with:
3737
distribution: 'temurin'
3838
java-version: '17'
3939
- name: Setup Python
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: ${{ matrix.python.version }}
4343
- name: Check Python
@@ -69,4 +69,4 @@ jobs:
6969
runs-on: ubuntu-latest
7070
needs: native
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5

.github/workflows/amd64_windows_bazel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
name: ${{ matrix.runner }}•Bazel(${{ matrix.bazel.compilation_mode }})•C++${{ matrix.cpp.version }}•Python${{ matrix.python.version }}
3939
runs-on: ${{ matrix.runner }}
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
- name: Setup Python
43-
uses: actions/setup-python@v5
43+
uses: actions/setup-python@v6
4444
with:
4545
python-version: ${{ matrix.python.version }}
4646
- name: Check Python
@@ -74,4 +74,4 @@ jobs:
7474
runs-on: ubuntu-latest
7575
needs: native
7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5

.github/workflows/arm64_macos_bazel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
name: MacOS•Bazel(${{ matrix.bazel.compilation_mode }})•C++${{ matrix.cpp.version }}•Python${{ matrix.python.version }}
3131
runs-on: macos-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Set Java to OpenJDK 17 (Temurin)
35-
uses: actions/setup-java@v3
35+
uses: actions/setup-java@v5
3636
with:
3737
distribution: 'temurin'
3838
java-version: '17'
3939
- name: Setup Python
40-
uses: actions/setup-python@v5
40+
uses: actions/setup-python@v6
4141
with:
4242
python-version: ${{ matrix.python.version }}
4343
- name: Check Python
@@ -69,4 +69,4 @@ jobs:
6969
runs-on: ubuntu-latest
7070
needs: native
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
steps:
17-
- uses: actions/checkout@v4.1.7
17+
- uses: actions/checkout@v5
1818
- run: |
1919
gh release create "${GITHUB_REF_NAME}" \
2020
--generate-notes --latest --verify-tag \

0 commit comments

Comments
 (0)