Skip to content

Commit 3c3824e

Browse files
Bump actions/checkout from 5 to 6 in the actions group
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3a235af commit 3c3824e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/binary-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref_name, 'varlock@')
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: Install pnpm
3434
uses: pnpm/action-setup@v4
3535
with:
@@ -100,7 +100,7 @@ jobs:
100100

101101
# UPDATE HOMEBREW FORMULA ---
102102
- name: checkout homebrew tap repo
103-
uses: actions/checkout@v5
103+
uses: actions/checkout@v6
104104
with:
105105
repository: dmno-dev/homebrew-tap
106106
# need a different token to update a different repo
@@ -127,7 +127,7 @@ jobs:
127127
contents: read
128128
packages: write
129129
steps:
130-
- uses: actions/checkout@v5
130+
- uses: actions/checkout@v6
131131

132132
- name: get version from release tag
133133
if: ${{ github.event_name == 'release' }}

.github/workflows/release-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
# by default only the current commit is fetched
1717
# but we need more history to be able to compare to main

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Release
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
# this is needed so that pushes to the version release branch will use the token we pass in below
1818
# otherwise the default token will be used, and we will not get an updated pkg.pr.new preview for that branch

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
# by default only the current commit is fetched
1515
# but we need more history to be able to compare to main

0 commit comments

Comments
 (0)