Skip to content

Commit dbcdee7

Browse files
Bump the gh-actions group across 1 directory with 3 updates
Bumps the gh-actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/checkout](https://github.com/actions/checkout) and [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `dawidd6/action-download-artifact` from 11 to 12 - [Release notes](https://github.com/dawidd6/action-download-artifact/releases) - [Commits](dawidd6/action-download-artifact@v11...v12) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: dawidd6/action-download-artifact dependency-version: '12' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e50f9b9 commit dbcdee7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Upload
23-
uses: actions/upload-artifact@v5
23+
uses: actions/upload-artifact@v6
2424
with:
2525
name: Event File
2626
path: ${{ github.event_path }}
@@ -29,7 +29,7 @@ jobs:
2929
lint:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with:
3434
ref: ${{ github.event.pull_request.head.sha }} # run it on the PR, not on the merged commit, for better line numbers
3535

@@ -56,7 +56,7 @@ jobs:
5656
os: [ubuntu-latest, macos-latest, windows-latest]
5757
runs-on: ${{ matrix.os }}
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
- name: Set up JDK 11
6161
uses: actions/setup-java@v5
6262
with:
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Upload Unit Test Results
7171
if: always()
72-
uses: actions/upload-artifact@v5
72+
uses: actions/upload-artifact@v6
7373
with:
7474
name: Unit Test Results (${{ matrix.os }})
7575
path: target/surefire-reports/**/*.xml
@@ -78,7 +78,7 @@ jobs:
7878
if: ${{ !(github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, '[maven-release-plugin]')) }}
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
- name: Set up JDK 11
8383
uses: actions/setup-java@v5
8484
with:
@@ -94,7 +94,7 @@ jobs:
9494
needs: [checker-framework, test]
9595
runs-on: ubuntu-latest
9696
steps:
97-
- uses: actions/checkout@v5
97+
- uses: actions/checkout@v6
9898
- name: Set up JDK 11
9999
uses: actions/setup-java@v5
100100
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/publish-test-results.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Download and Extract Artifacts
24-
uses: dawidd6/action-download-artifact@v11
24+
uses: dawidd6/action-download-artifact@v14
2525
with:
2626
run_id: ${{ github.event.workflow_run.id }}
2727
path: artifacts

0 commit comments

Comments
 (0)