Skip to content

Commit ab54930

Browse files
build(deps): bump actions/checkout (#351)
Bumps the github-actions group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 07b1c76 commit ab54930

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/catalog-info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
packages: read
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- uses: elastic/oblt-actions/elastic/validate-catalog@v1
2424

.github/workflows/pre-post-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0
4444
- name: Validate tag does not exist on current commit
@@ -66,7 +66,7 @@ jobs:
6666
repositories: >-
6767
["ecs-logging-java"]
6868
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
with:
7171
ref: ${{ inputs.ref }}
7272
token: ${{ steps.get_token.outputs.token }}

.github/workflows/release-step-3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
ref: ${{ inputs.ref }}
4545
fetch-depth: 0
@@ -138,7 +138,7 @@ jobs:
138138
permissions:
139139
contents: write
140140
steps:
141-
- uses: actions/checkout@v4
141+
- uses: actions/checkout@v5
142142
with:
143143
ref: ${{ inputs.ref }}
144144

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
is-snapshot: ${{ steps.validate.outputs.is-snapshot }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Validate version is a snapshot version
2626
id: validate
2727
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- 'compile javadoc:javadoc'
3131
fail-fast: false
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- uses: ./.github/workflows/maven-goal
3535
with:
3636
command: ./mvnw ${{ matrix.goal }}

.github/workflows/updatecli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
packages: read
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Get token
2121
id: get_token

0 commit comments

Comments
 (0)