Skip to content

Commit 9fd5c19

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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] <[email protected]>
1 parent ba688ad commit 9fd5c19

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/alttexter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "REF=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV
2828
2929
- name: Checkout
30-
uses: actions/checkout@v4.1.1
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 1
3333
ref: ${{ env.REF }}

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
steps:
2929

3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
path: docs
3434
fetch-depth: 0
3535
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
3636

3737
- name: Download Tools
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
with:
4040
repository: ${{ secrets.TOOLS_REPOSITORY }}
4141
ref: master

.github/workflows/merge-release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
steps:
1616

1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
path: docs
2121
token: ${{ secrets.TOOLS_PAT }}
2222

2323
- name: Checkout Tools
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
repository: ${{ secrets.TOOLS_REPOSITORY }}
2727
ref: master

.github/workflows/smarteditor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
REF=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" $PR_API_URL | jq -r .head.ref)
3636
echo "REF=$REF" >> $GITHUB_ENV
3737
- name: Checkout
38-
uses: actions/checkout@v4.1.1
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 1
4141
ref: ${{ env.REF }}

.github/workflows/validate-frontmatter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Validate
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4.1.1
12+
- uses: actions/checkout@v6
1313
- name: Validate Frontmatter
1414
uses: mheap/frontmatter-json-schema-action@main
1515
with:

.github/workflows/visual-assets-update-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- name: Checkout
6060
if: (github.event_name == 'issue_comment' && needs.ignore-list.outputs.triggered == 'true') || github.event_name != 'issue_comment'
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262
with:
6363
fetch-depth: 1
6464

.github/workflows/visual-assets-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Checkout
4141
if: inputs.files == '' || steps.count.outputs.number > 0
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 1
4545
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}

0 commit comments

Comments
 (0)