Skip to content

Commit 1d84c0e

Browse files
committed
Upgrade GitHub Actions versions
Update workflow actions across CI, release, snapshot and labeler workflows: actions/checkout@v4 -> actions/checkout@v6, actions/setup-java@v4 -> actions/setup-java@v5, and actions/labeler@v5 -> actions/labeler@v6. Keeps workflows current and ensures compatibility with the configured Java 25 setup.
1 parent 51ec9bf commit 1d84c0e

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
java-version: [25]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: Set up JDK ${{ matrix.java-version }}
20-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@v5
2121
with:
2222
java-version: ${{ matrix.java-version }}
2323
distribution: temurin

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
label:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/labeler@v5
15+
- uses: actions/labeler@v6
1616
with:
1717
sync-labels: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
contents: write
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- uses: webfactory/ssh-agent@v0.9.1
2121
with:
2222
ssh-private-key: ${{ secrets.MAVEN_RELEASE_SSH_KEY }}
23-
- uses: actions/setup-java@v4
23+
- uses: actions/setup-java@v5
2424
with:
2525
java-version: "25"
2626
distribution: "temurin"

.github/workflows/snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
checks: write
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

29-
- uses: actions/setup-java@v4
29+
- uses: actions/setup-java@v5
3030
with:
3131
java-version: "25"
3232
distribution: "temurin"

0 commit comments

Comments
 (0)