Skip to content

Commit b2902c0

Browse files
ci: update checkout action
1 parent fb48985 commit b2902c0

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.github/workflows/autofix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/[email protected]
21+
uses: actions/[email protected]
22+
with:
23+
fetch-depth: 0
2224
- name: Setup Tools
2325
uses: tanstack/config/.github/setup@main
2426
- name: Fix formatting

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pr
1+
name: PR
22

33
on:
44
pull_request:
@@ -22,15 +22,15 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4.2.2
25+
uses: actions/checkout@v5.0.0
2626
with:
2727
fetch-depth: 0
2828
- name: Start Nx Agents
2929
run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
3030
- name: Setup Tools
3131
uses: tanstack/config/.github/setup@main
3232
- name: Get base and head commits for `nx affected`
33-
uses: nrwl/nx-set-shas@v4.1.2
33+
uses: nrwl/nx-set-shas@v4.3.3
3434
with:
3535
main-branch-name: main
3636
- name: Run Checks
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v4.2.2
54+
uses: actions/checkout@v5.0.0
5555
with:
5656
fetch-depth: 0
5757
- name: Setup Tools

.github/workflows/ci.yml renamed to .github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ permissions:
2121
id-token: write
2222

2323
jobs:
24-
test-and-publish:
25-
name: Test & Publish
24+
release:
25+
name: Release
2626
if: github.repository_owner == 'TanStack'
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4.2.2
30+
uses: actions/checkout@v5.0.0
3131
with:
3232
fetch-depth: 0
3333
- name: Start Nx Agents

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "git",
66
"url": "https://github.com/TanStack/query.git"
77
},
8-
"packageManager": "pnpm@10.16.1",
8+
"packageManager": "pnpm@10.17.0",
99
"type": "module",
1010
"scripts": {
1111
"clean": "pnpm --filter \"./packages/**\" run clean",

0 commit comments

Comments
 (0)