Skip to content

Commit 4ac2cad

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] <support@github.com>
1 parent 6c6bd31 commit 4ac2cad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "Using swift-syntax version: $SWIFT_SYNTAX_VERSION"
6363
echo "swift_syntax_version=$SWIFT_SYNTAX_VERSION" >> "$GITHUB_OUTPUT"
6464
- name: Checkout repository
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666
- name: Tag release
6767
run: |
6868
git tag "${{ steps.swift_syntax_version.outputs.swift_syntax_version }}"
@@ -77,7 +77,7 @@ jobs:
7777
contents: write
7878
steps:
7979
- name: Checkout repository
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v6
8181
- name: Create release
8282
env:
8383
GH_TOKEN: ${{ github.token }}

.github/workflows/pull_request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
persist-credentials: false
3636
- name: Update environment
@@ -47,7 +47,7 @@ jobs:
4747
image: swift:latest
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151
with:
5252
persist-credentials: false
5353
- name: Validate generated code
@@ -59,7 +59,7 @@ jobs:
5959
image: swift:latest
6060
steps:
6161
- name: Checkout repository
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v6
6363
with:
6464
persist-credentials: false
6565
- name: Test
@@ -75,7 +75,7 @@ jobs:
7575
docker pull $Image
7676
echo "image=$Image" >> "$env:GITHUB_OUTPUT"
7777
- name: Checkout repository
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v6
7979
with:
8080
persist-credentials: false
8181
- name: Test

0 commit comments

Comments
 (0)