Skip to content

Commit 96f898b

Browse files
committed
Update GitHub Actions to use v5 for checkout and setup-java
Bump actions/checkout and actions/setup-java from v4 to v5 in maven-build and maven-publish workflows to ensure compatibility with the latest features and improvements.
1 parent 3acac83 commit 96f898b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/maven-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
maven-profile-spring-cloud: [ 'spring-cloud-2022' , 'spring-cloud-2023' , 'spring-cloud-2024' , 'spring-cloud-2025' ]
2424
steps:
2525
- name: Checkout Source
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Setup Testcontainers Cloud Client
2929
uses: atomicjar/testcontainers-cloud-setup-action@v1
3030
with:
3131
token: ${{ secrets.TC_CLOUD_TOKEN }}
3232

3333
- name: Setup JDK ${{ matrix.Java }}
34-
uses: actions/setup-java@v4
34+
uses: actions/setup-java@v5
3535
with:
3636
distribution: 'temurin'
3737
java-version: ${{ matrix.java }}

.github/workflows/maven-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
if: ${{ inputs.revision }}
2525
steps:
2626
- name: Checkout Source
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Setup Maven Central Repository
30-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@v5
3131
with:
3232
java-version: '17'
3333
distribution: 'temurin'

0 commit comments

Comments
 (0)