Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: composite
steps:
- name: Setup Vite+
uses: voidzero-dev/setup-vp@250f29ce396baf5e8f24498e17c0dfdebabc26eb # v1.15.0
uses: voidzero-dev/setup-vp@1b32467adbe183473499fd9d5d372c3ed9641754 # v1.18.0
with:
node-version-file: .nvmrc
run-install: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Tools
uses: ./.github/setup

Check warning on line 25 in .github/workflows/autofix.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

autofix.yml:25: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
- name: Fix formatting
run: pnpm run format
- name: Apply fixes
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Tools
uses: ./.github/setup

Check warning on line 27 in .github/workflows/pr.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

pr.yml:27: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
- name: Get base and head commits for `nx affected`
uses: nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
with:
Expand All @@ -36,11 +36,11 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Tools
uses: ./.github/setup

Check warning on line 43 in .github/workflows/pr.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

pr.yml:43: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
- name: Build Packages
run: pnpm run build:all
- name: Publish Previews
Expand All @@ -50,11 +50,11 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Check Provenance
uses: danielroe/provenance-action@41bcc969e579d9e29af08ba44fcbfdf95cee6e6c # v0.1.1
uses: danielroe/provenance-action@fcc45fd5a5b818c477432b32c838dcd0c79cd2dd # v0.2.0
with:
fail-on-downgrade: true
version-preview:
Expand All @@ -65,10 +65,10 @@
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Tools
uses: ./.github/setup

Check warning on line 72 in .github/workflows/pr.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

pr.yml:72: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
- name: Changeset Preview
uses: ./.github/changeset-preview

Check warning on line 74 in .github/workflows/pr.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

pr.yml:74: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Tools
uses: ./.github/setup

Check warning on line 33 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

release.yml:33: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
- name: Run Tests
run: pnpm run test:ci
- name: Run Changesets (version or publish)
Expand All @@ -45,7 +45,7 @@
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Comment on PRs and issues about release
if: steps.changesets.outputs.published == 'true'
uses: ./.github/comment-on-release

Check warning on line 48 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Run zizmor

self-repository

release.yml:48: use GitHub's dedicated self-repository syntax: use '$/...' instead of './...'
with:
published-packages: ${{ steps.changesets.outputs.publishedPackages }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run zizmor
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
uses: zizmorcore/zizmor-action@70fb788f84895a7701f5643d103d587e460b5c99 # v0.6.3
with:
advanced-security: false
annotations: true
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"type": "git",
"url": "https://github.com/TanStack/config.git"
},
"packageManager": "pnpm@11.11.0",
"packageManager": "pnpm@11.25.0",
"engines": {
"pnpm": ">=11.11.0"
"pnpm": ">=11.25.0"
},
"type": "module",
"scripts": {
Expand Down
Loading
Loading