Skip to content

Commit 9f5dde6

Browse files
authored
Merge pull request #337 from WDAqua/dependabot/github_actions/actions/setup-java-5
Bump actions/setup-java from 4 to 5
2 parents dadc248 + 6d39fea commit 9f5dde6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docker-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
env:
1111
VIRTUOSO_PASSWORD: ${{ secrets.VIRTUOSO_PASSWORD }}
1212
steps:
13-
- name: Set up JDK 15
13+
- name: Set up JDK
1414
uses: actions/setup-java@v5
1515
with:
1616
java-version: "25"

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717

1818
- name: Set up Maven Central Repository # Configures settings.xml with required credentials
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with: # The environment variables are defined when needed (here, when the package is being published)
2121
distribution: 'temurin'
2222
java-version: '25'

.github/workflows/pull-request-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v6
1313

1414
- name: Set up Java
15-
uses: actions/setup-java@v4
15+
uses: actions/setup-java@v5
1616
with: # The environment variables are defined when needed (here, when the package is being published)
1717
distribution: 'temurin'
1818
java-version: '17'

0 commit comments

Comments
 (0)