Skip to content

Commit 8551cd9

Browse files
dependabot[bot]Google Java Core Libraries
authored andcommitted
Bump the github-actions group with 5 updates
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) | `0.12.1` | `0.13.0` | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [actions/setup-java](https://github.com/actions/setup-java) | `5.1.0` | `5.2.0` | | [gradle/actions](https://github.com/gradle/actions) | `5.0.0` | `5.0.1` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.9` | `4.32.0` | Updates `styfle/cancel-workflow-action` from 0.12.1 to 0.13.0 - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](styfle/cancel-workflow-action@85880fa...3155a14) Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `actions/setup-java` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@f2beeb2...be666c2) Updates `gradle/actions` from 5.0.0 to 5.0.1 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](gradle/actions@4d9f0ba...f29f5a9) Updates `github/codeql-action` from 4.31.9 to 4.32.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@5d4e8d1...b20883b) Fixes #8191 RELNOTES=n/a PiperOrigin-RevId: 864366283
1 parent 3d59d5b commit 8551cd9

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232
steps:
3333
# Cancel any previous runs for the same branch that are still running.
3434
- name: 'Cancel previous runs'
35-
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
35+
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
3636
with:
3737
access_token: ${{ github.token }}
3838
- name: 'Check out repository'
39-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
39+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4040
# When we specify multiple JDKs, the final one becomes the default, which is used to execute Maven itself.
4141
# Our Maven configuration then specifies different JDKs to use for some of the steps:
4242
# - 11 (sometimes) to *download* to support anyone who runs JDiff or our Gradle integration tests (including our doc snapshots and our Java 11 CI test run) but not to use directly
4343
# - 25 for running Javadoc and javac (to help people who build Guava locally and might not use a recent JDK to run Maven)
4444
- name: 'Set up JDKs'
45-
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
45+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
4646
with:
4747
java-version: |
4848
${{ matrix.java }}
@@ -62,7 +62,7 @@ jobs:
6262
run: ./util/print_surefire_reports.sh
6363
- name: 'Set up Gradle'
6464
if: matrix.java == 11 # used only by the integration tests below
65-
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
65+
uses: gradle/actions/setup-gradle@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1
6666
- name: 'Integration Test'
6767
if: matrix.java == 11
6868
shell: bash
@@ -75,9 +75,9 @@ jobs:
7575
runs-on: ubuntu-latest
7676
steps:
7777
- name: 'Check out repository'
78-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
78+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7979
- name: 'Set up JDKs'
80-
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
80+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
8181
with:
8282
# For discussion, see the first setup-java block.
8383
# The publish-snapshot workflow doesn't run tests, so we don't have to care which version Maven would select for that step.
@@ -102,9 +102,9 @@ jobs:
102102
runs-on: ubuntu-latest
103103
steps:
104104
- name: 'Check out repository'
105-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
105+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
106106
- name: 'Set up JDKs'
107-
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
107+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
108108
with:
109109
# For discussion, see the first setup-java block.
110110
# The generate-docs workflow doesn't run tests, so we don't have to care which version Maven would select for that step.

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
with:
3737
persist-credentials: false
3838

@@ -67,6 +67,6 @@ jobs:
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
70+
uses: github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
7171
with:
7272
sarif_file: results.sarif

0 commit comments

Comments
 (0)