Skip to content

Commit 2c72327

Browse files
build(deps): bump actions/checkout from 5 to 6 (#70)
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 6f90c44 commit 2c72327

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-offline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
permissions:
1010
contents: read
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313

1414
- run: scripts/generate-offline.sh
1515
shell: bash

.github/workflows/call-add-mapping-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
github-pat:projects/626836145334/secrets/GITHUB_CI_PAT
4141
4242
- name: Checkout repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
repository: fluentdo/documentation
4646
token: ${{ steps.get-secrets.outputs.github-pat }}

.github/workflows/cron-run-scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
github-pat:projects/626836145334/secrets/GITHUB_CI_PAT
3636
3737
- name: Checkout repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
token: ${{ steps.get-secrets.outputs.github-pat }}
4141

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
name: PR - Shellcheck
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: reviewdog/action-shellcheck@v1.32.0
1919
with:
2020
reporter: github-pr-review
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
name: PR - Actionlint
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- run: |
3535
echo "::add-matcher::.github/actionlint-matcher.json"
3636
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
name: PR - Check Orphaned Documentation
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Check for orphaned markdown files
4646
run: bash ./scripts/check-orphaned-docs.sh
4747
shell: bash

0 commit comments

Comments
 (0)