Skip to content

Commit 3695bd5

Browse files
ci: bump the github-actions group with 5 updates (#36)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major 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 - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 48cfae1 commit 3695bd5

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
steps:
2828
- name: Check out repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- name: Set up Temurin JDK 17
32-
uses: actions/setup-java@v4
32+
uses: actions/setup-java@v5
3333
with:
3434
distribution: temurin
3535
java-version: '17'
@@ -61,10 +61,10 @@ jobs:
6161

6262
steps:
6363
- name: Check out repository
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v6
6565

6666
- name: Set up Temurin JDK ${{ matrix.java }}
67-
uses: actions/setup-java@v4
67+
uses: actions/setup-java@v5
6868
with:
6969
distribution: temurin
7070
java-version: ${{ matrix.java }}
@@ -90,10 +90,10 @@ jobs:
9090

9191
steps:
9292
- name: Check out repository
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v6
9494

9595
- name: Set up Temurin JDK 17
96-
uses: actions/setup-java@v4
96+
uses: actions/setup-java@v5
9797
with:
9898
distribution: temurin
9999
java-version: '17'
@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Upload generated PDFs
114114
if: always()
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: examples-pdfs-${{ github.run_id }}
118118
path: examples/target/generated-pdfs/**
@@ -128,10 +128,10 @@ jobs:
128128

129129
steps:
130130
- name: Check out repository
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v6
132132

133133
- name: Set up Temurin JDK 17
134-
uses: actions/setup-java@v4
134+
uses: actions/setup-java@v5
135135
with:
136136
distribution: temurin
137137
java-version: '17'
@@ -152,7 +152,7 @@ jobs:
152152
153153
- name: Upload smoke benchmark artifacts
154154
if: always()
155-
uses: actions/upload-artifact@v4
155+
uses: actions/upload-artifact@v7
156156
with:
157157
name: benchmark-smoke-${{ github.run_id }}
158158
path: benchmarks/target/benchmarks/current-speed/**
@@ -167,17 +167,17 @@ jobs:
167167

168168
steps:
169169
- name: Check out repository
170-
uses: actions/checkout@v4
170+
uses: actions/checkout@v6
171171

172172
- name: Set up Temurin JDK 17
173-
uses: actions/setup-java@v4
173+
uses: actions/setup-java@v5
174174
with:
175175
distribution: temurin
176176
java-version: '17'
177177
cache: maven
178178

179179
- name: Restore benchmark history cache
180-
uses: actions/cache@v4
180+
uses: actions/cache@v5
181181
with:
182182
path: benchmarks/target/benchmarks/current-speed
183183
key: benchmark-current-speed-${{ github.ref_name }}-${{ github.run_id }}
@@ -218,7 +218,7 @@ jobs:
218218
219219
- name: Upload benchmark artifacts
220220
if: always()
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v7
222222
with:
223223
name: benchmark-full-${{ github.run_id }}
224224
path: |

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ jobs:
3535

3636
steps:
3737
- name: Check out repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939

4040
- name: Set up Temurin JDK 17
41-
uses: actions/setup-java@v4
41+
uses: actions/setup-java@v5
4242
with:
4343
distribution: temurin
4444
java-version: '17'
4545
cache: maven
4646

4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@v3
48+
uses: github/codeql-action/init@v4
4949
with:
5050
languages: ${{ matrix.language }}
5151
queries: security-and-quality
@@ -57,6 +57,6 @@ jobs:
5757
run: ./mvnw -B -ntp -DskipTests -pl . package
5858

5959
- name: Perform CodeQL analysis
60-
uses: github/codeql-action/analyze@v3
60+
uses: github/codeql-action/analyze@v4
6161
with:
6262
category: "/language:${{ matrix.language }}"

0 commit comments

Comments
 (0)