Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/binary-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref_name, 'varlock@')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:

# UPDATE HOMEBREW FORMULA ---
- name: checkout homebrew tap repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dmno-dev/homebrew-tap
# need a different token to update a different repo
Expand All @@ -127,7 +127,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: get version from release tag
if: ${{ github.event_name == 'release' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# by default only the current commit is fetched
# but we need more history to be able to compare to main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pull-requests: write
issues: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# this is needed so that pushes to the version release branch will use the token we pass in below
# otherwise the default token will be used, and we will not get an updated pkg.pr.new preview for that branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# by default only the current commit is fetched
# but we need more history to be able to compare to main
Expand Down