Skip to content

Commit 55d30cd

Browse files
Bump actions/checkout from 4 to 5 (#286)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a5ff27c commit 55d30cd

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

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

2929
steps:
3030

31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.
3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
- uses: actions/setup-java@v4
4040
with:
4141
distribution: 'temurin'

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Setup Java
1818
uses: actions/setup-java@v4
1919
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
shell: bash
2525
steps:
2626
- name: Checkout the repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Fail if not running on main branch
3030
if: ${{ github.ref != 'refs/heads/main' }}
@@ -78,7 +78,7 @@ jobs:
7878
contents: write # Required for creating GitHub release
7979
steps:
8080
- name: Checkout the repository
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
- name: Set up Java
8383
uses: actions/setup-java@v4
8484
with:

0 commit comments

Comments
 (0)