Skip to content

Commit f49d510

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 2b46479 commit f49d510

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
3434

3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
token: ${{ steps.bot.outputs.token }}
3939

.github/workflows/release-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
git config --global user.email "$USER_EMAIL"
6666
6767
- name: Checkout
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v6
6969
with:
7070
ref: "refs/heads/${{ inputs.branch }}"
7171
token: ${{ steps.bot.outputs.token }}

.github/workflows/release-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: echo "$GITHUB_CONTEXT"
2929

3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
# Required to deduce version from git tags
3434
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
git config --global user.email "$USER_EMAIL"
111111
112112
- name: Checkout
113-
uses: actions/checkout@v4
113+
uses: actions/checkout@v6
114114
with:
115115
ref: "refs/heads/${{ inputs.branch }}"
116116
token: ${{ steps.bot.outputs.token }}

.github/workflows/version-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: echo "$GITHUB_CONTEXT"
5959

6060
- name: Checkout
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262
if: steps.skipper.outputs.skip != 'true'
6363
with:
6464
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)