Skip to content

Commit dcb8edf

Browse files
Bump actions/checkout from 5 to 6 (#655)
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 68972b8 commit dcb8edf

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out docs
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: Check out website
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
repository: dita-ot/website
1919
token: ${{ secrets.COMMITTER_TOKEN }}

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
name: 'Validation'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- uses: gradle/actions/wrapper-validation@v5

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
# Make sure the actual branch is checked out when running on pull requests
2323
ref: ${{ github.ref }}

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
WEBSITE_BRANCH: 'master'
1818
steps:
1919
- name: Check out docs
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Check out website
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
repository: dita-ot/website
2525
ref: ${{ env.WEBSITE_BRANCH }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo "TAG=${{ github.event.inputs.docs-tag }}" >> $GITHUB_ENV
3636
fi
3737
- name: Check out docs
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
ref: ${{ env.TAG }}
4141
- name: Set variables
@@ -48,7 +48,7 @@ jobs:
4848
java-version: 17
4949
cache: 'gradle'
5050
- name: Check out website
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
repository: dita-ot/website
5454
token: ${{ secrets.COMMITTER_TOKEN }}
@@ -120,7 +120,7 @@ jobs:
120120
echo "RELEASE_VERSION=${{ github.event.inputs.dita-ot-version }}" >> $GITHUB_ENV
121121
fi
122122
- name: Check out docs
123-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
124124
with:
125125
ref: develop
126126
- name: Update GitHub Actions release workflow

0 commit comments

Comments
 (0)