Skip to content

Commit e572691

Browse files
Bump actions/checkout from 5 to 6 in /.github/workflows (#2249)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0f854dd commit e572691

12 files changed

+20
-20
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@v5
24+
- uses: actions/checkout@v6
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@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
ref: ${{ inputs.ref }}
2424
- name: Amazon Linux 2023 build

.github/workflows/ci.yml

Lines changed: 5 additions & 5 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@v5
23+
- uses: actions/checkout@v6
2424

2525
- name: Bootstrap Action Workspace
2626
id: bootstrap
@@ -44,7 +44,7 @@ jobs:
4444
env:
4545
MSBuildNoWarn: IDE0032
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848

4949
- name: Bootstrap Action Workspace
5050
id: bootstrap
@@ -77,7 +77,7 @@ jobs:
7777
run:
7878
working-directory: src/Elastic.Documentation.Site
7979
steps:
80-
- uses: actions/checkout@v5
80+
- uses: actions/checkout@v6
8181

8282
- uses: actions/setup-node@v6
8383
with:
@@ -122,7 +122,7 @@ jobs:
122122
- macos-latest
123123
- windows-latest
124124
steps:
125-
- uses: actions/checkout@v5
125+
- uses: actions/checkout@v6
126126
- name: 'Windows only, set TEMP to the same drive'
127127
if: ${{ matrix.os == 'windows-latest' }}
128128
# temporary waiting for https://github.com/parcel-bundler/parcel/pull/10095 to fix
@@ -161,7 +161,7 @@ jobs:
161161
integration:
162162
runs-on: docs-builder-latest-16
163163
steps:
164-
- uses: actions/checkout@v5
164+
- uses: actions/checkout@v6
165165

166166
- name: Bootstrap Action Workspace
167167
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@v5
18+
- uses: actions/checkout@v6
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
@@ -34,7 +34,7 @@ jobs:
3434
env:
3535
ZIP_FILE: api-lambda.zip
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838

3939
- name: Download bootstrap binary
4040
uses: actions/download-artifact@v6

.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@v5
14+
- uses: actions/checkout@v6
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
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- id: repo-basename
3030
run: 'echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Setup Pages
3333
id: pages
3434
uses: actions/configure-pages@v5.0.0
@@ -52,7 +52,7 @@ jobs:
5252
major-version: ${{ steps.bootstrap.outputs.major-version }}
5353

5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656

5757
- name: Bootstrap Action Workspace
5858
id: bootstrap

.github/workflows/preview-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
steps:
153153
- name: Checkout
154154
if: contains(fromJSON('["push", "merge_group", "workflow_dispatch"]'), github.event_name)
155-
uses: actions/checkout@v5
155+
uses: actions/checkout@v6
156156
with:
157157
ref: ${{ github.event.pull_request.head.sha || github.ref }}
158158

@@ -251,7 +251,7 @@ jobs:
251251
needs.check.outputs.any_modified == 'true'
252252
|| contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
253253
)
254-
uses: actions/checkout@v5
254+
uses: actions/checkout@v6
255255
with:
256256
ref: ${{ github.event.pull_request.head.sha || github.ref }}
257257
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@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
ref: ${{ needs.release-drafter.outputs.tag_name }}
5858
- name: Bootstrap Action Workspace
@@ -144,7 +144,7 @@ jobs:
144144
major-version: ${{ steps.bootstrap.outputs.major-version }}
145145

146146
steps:
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148
with:
149149
ref: ${{ needs.release-drafter.outputs.tag_name }}
150150
- name: 'Windows only, set TEMP to the same drive'

.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@v5
21+
- uses: actions/checkout@v6
2222
- name: Wait for PR to be ready (if just opened)
2323
if: github.event_name == 'pull_request_target' && github.event.action == 'opened'
2424
run: sleep 30

0 commit comments

Comments
 (0)