Skip to content

Commit bc2b190

Browse files
committed
Merge pull request #16 from dependabot[bot]
* pr/16: Polish "Bump actions/checkout from 4 to 5" Bump actions/checkout from 4 to 5 Closes gh-16
2 parents 89f3616 + f383616 commit bc2b190

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
distribution: 'liberica'
1818
java-version: 24
1919
- name: Check out code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Set up Gradle
2222
uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244
2323
with:

.github/actions/integration-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
using: composite
2121
steps:
2222
- name: Check out action
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Unzip artifacts to deploy
2525
shell: bash
2626
run: unzip integration-test/bundle.zip -d integration-test/bundle/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: 'ubuntu-latest'
99
steps:
1010
- name: Check out code
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
- name: Build
1313
uses: ./.github/actions/build

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: 'ubuntu-latest'
1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Build
1818
uses: ./.github/actions/build
1919
build-and-publish-sonatype-portal-mock:
@@ -24,7 +24,7 @@ jobs:
2424
packages: write
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Log in to GitHub Container Registry
2929
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
3030
- name: Build Sonatype Portal Mock docker image
@@ -51,7 +51,7 @@ jobs:
5151
PORTALMOCK_DEPLOYMENT_DELAY_BETWEEN_STEPS: '10s'
5252
steps:
5353
- name: Check out code
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
- name: Integration test
5656
uses: ./.github/actions/integration-test
5757
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: 'ubuntu-latest'
1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Build
1818
id: build
1919
uses: ./.github/actions/build
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: 'ubuntu-latest'
2929
steps:
3030
- name: Check Out Code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: Create GitHub Release
3333
uses: ./.github/actions/create-github-release
3434
with:

0 commit comments

Comments
 (0)