Skip to content

Commit 4253117

Browse files
chore: [DevOps] bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [fsfe/reuse-action](https://github.com/fsfe/reuse-action) | `5.0.0` | `6.0.0` | 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-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 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) 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) Updates `fsfe/reuse-action` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/fsfe/reuse-action/releases) - [Commits](fsfe/reuse-action@v5.0.0...v6.0.0) --- 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-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: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' 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 - dependency-name: fsfe/reuse-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 56d111b commit 4253117

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/continuous-integration.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ jobs:
143143
fi
144144
145145
- name: "Upload SDK M2"
146-
uses: actions/upload-artifact@v4
146+
uses: actions/upload-artifact@v5
147147
with:
148148
name: ${{ env.SDK_M2_NAME }}
149149
path: ${{ env.SDK_M2_PATH }}
150150
retention-days: 1
151151

152152
- name: "Upload SDK Targets"
153-
uses: actions/upload-artifact@v4
153+
uses: actions/upload-artifact@v5
154154
with:
155155
name: ${{ env.SDK_TARGETS_NAME }}
156156
path: ${{ env.SDK_TARGETS_PATH }}
@@ -180,13 +180,13 @@ jobs:
180180
path: ${{ env.M2_ROOT }}
181181

182182
- name: "Restore SDK M2"
183-
uses: actions/download-artifact@v5
183+
uses: actions/download-artifact@v6
184184
with:
185185
name: ${{ env.SDK_M2_NAME }}
186186
path: ${{ env.M2_ROOT }}
187187

188188
- name: "Restore SDK Targets"
189-
uses: actions/download-artifact@v5
189+
uses: actions/download-artifact@v6
190190
with:
191191
name: ${{ env.SDK_TARGETS_NAME }}
192192

@@ -241,13 +241,13 @@ jobs:
241241
path: ${{ env.M2_ROOT }}
242242

243243
- name: "Restore SDK M2"
244-
uses: actions/download-artifact@v5
244+
uses: actions/download-artifact@v6
245245
with:
246246
name: ${{ env.SDK_M2_NAME }}
247247
path: ${{ env.M2_ROOT }}
248248

249249
- name: "Restore SDK Targets"
250-
uses: actions/download-artifact@v5
250+
uses: actions/download-artifact@v6
251251
with:
252252
name: ${{ env.SDK_TARGETS_NAME }}
253253

@@ -282,7 +282,7 @@ jobs:
282282
path: ${{ env.MAVEN_CACHE_DIR }}
283283

284284
- name: "Initialize CodeQL"
285-
uses: github/codeql-action/init@v3
285+
uses: github/codeql-action/init@v4
286286
with:
287287
languages: "java"
288288
queries: security-extended
@@ -294,7 +294,7 @@ jobs:
294294
mvn $MVN_ARGS
295295
296296
- name: "Perform CodeQL Analysis"
297-
uses: github/codeql-action/analyze@v3
297+
uses: github/codeql-action/analyze@v4
298298
with:
299299
category: "/language:java"
300300

@@ -325,7 +325,7 @@ jobs:
325325
path: ${{ env.MAVEN_CACHE_DIR }}
326326

327327
- name: "Restore SDK M2"
328-
uses: actions/download-artifact@v5
328+
uses: actions/download-artifact@v6
329329
with:
330330
name: ${{ env.SDK_M2_NAME }}
331331
path: ${{ env.M2_ROOT }}

.github/workflows/javadoc.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
git config --global user.name "SAP Cloud SDK Bot"
2626
2727
- name: "Checkout Repository"
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131

3232
- name: "Switch branch"
3333
run: git checkout "${{ github.event.inputs.branch || 'main' }}"
3434

3535
- name: "Set up JDK 17"
36-
uses: actions/setup-java@v4
36+
uses: actions/setup-java@v5
3737
with:
3838
java-version: '17'
3939
distribution: 'temurin'
@@ -58,7 +58,7 @@ jobs:
5858
run: mvn clean javadoc:aggregate -Drelease -Djava.failOnWarning=false --projects "${PROJECTS}" --quiet
5959

6060
- name: "Checkout Docs Repository"
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
repository: ${{ env.DOCS_REPO }}
6464
path: .cloud-sdk-docs

.github/workflows/reuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v5
1616
- name: REUSE Compliance Check
17-
uses: fsfe/reuse-action@v5.0.0
17+
uses: fsfe/reuse-action@v6.0.0

0 commit comments

Comments
 (0)