Skip to content

Commit 3847dc3

Browse files
Bump actions/checkout from 4 to 5 in /.github/workflows (#1770)
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> Co-authored-by: Martijn Laarman <[email protected]>
1 parent 791f565 commit 3847dc3

11 files changed

+18
-18
lines changed

.github/workflows/build-api-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
BINARY_PATH: .artifacts/Elastic.Documentation.Api.Lambda/release_linux-x64/bootstrap
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
ref: ${{ inputs.ref }}
2727
- name: Amazon Linux 2023 build

.github/workflows/build-link-index-updater-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
BINARY_PATH: .artifacts/docs-lambda-index-publisher/release_linux-x64/bootstrap
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
ref: ${{ inputs.ref }}
2424
- name: Amazon Linux 2023 build

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
validate-assembler:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Bootstrap Action Workspace
2626
id: bootstrap
@@ -44,7 +44,7 @@ jobs:
4444
run:
4545
working-directory: src/Elastic.Documentation.Site
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848

4949
- uses: actions/setup-node@v4
5050
with:
@@ -78,7 +78,7 @@ jobs:
7878
- macos-latest
7979
- windows-latest
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
8282

8383
- name: Bootstrap Action Workspace
8484
id: bootstrap
@@ -99,7 +99,7 @@ jobs:
9999
integration:
100100
runs-on: docs-builder-latest-16
101101
steps:
102-
- uses: actions/checkout@v4
102+
- uses: actions/checkout@v5
103103

104104
- name: Bootstrap Action Workspace
105105
id: bootstrap

.github/workflows/create-major-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
create-major-tag:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Get major version
2020
run: |
2121
MAJOR_VERSION=$(echo "${GITHUB_REF#refs/tags/}" | awk -F. '{print $1}')

.github/workflows/deploy-api-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
ZIP_FILE: api-lambda.zip
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
- name: Download bootstrap binary
2929
uses: actions/download-artifact@v4
3030
with:

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Check license headers
1717
run: |

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- id: repo-basename
2828
run: 'echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Setup Pages
3131
id: pages
3232
uses: actions/[email protected]
@@ -50,7 +50,7 @@ jobs:
5050
major-version: ${{ steps.bootstrap.outputs.major-version }}
5151

5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454

5555
- name: Bootstrap Action Workspace
5656
id: bootstrap

.github/workflows/preview-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
steps:
130130
- name: Checkout
131131
if: contains(fromJSON('["push", "merge_group", "workflow_dispatch"]'), github.event_name)
132-
uses: actions/checkout@v4
132+
uses: actions/checkout@v5
133133
with:
134134
ref: ${{ github.event.pull_request.head.sha || github.ref }}
135135

@@ -228,7 +228,7 @@ jobs:
228228
needs.check.outputs.any_modified == 'true'
229229
|| contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
230230
)
231-
uses: actions/checkout@v4
231+
uses: actions/checkout@v5
232232
with:
233233
ref: ${{ github.event.pull_request.head.sha || github.ref }}
234234
persist-credentials: false

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
major-version: ${{ steps.bootstrap.outputs.major-version }}
5353

5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
ref: ${{ needs.release-drafter.outputs.tag_name }}
5858
- name: Bootstrap Action Workspace
@@ -133,7 +133,7 @@ jobs:
133133
major-version: ${{ steps.bootstrap.outputs.major-version }}
134134

135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137
with:
138138
ref: ${{ needs.release-drafter.outputs.tag_name }}
139139

.github/workflows/required-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- id: get-labels
2323
run: |
2424
labels=$(yq '[.categories[].labels] + .exclude-labels | flatten | unique | sort | @tsv' .github/release-drafter.yml | tr '\t' ',')

0 commit comments

Comments
 (0)