Skip to content

Commit

Permalink
Update gh actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Sep 5, 2024
1 parent f41c920 commit 81376f7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v4

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
Expand All @@ -30,7 +30,7 @@ jobs:
git restore .
- name: Setup prettier cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules/.cache/prettier
key: prettier-${{ github.sha }}
Expand All @@ -41,6 +41,6 @@ jobs:
run: pnpm run format

- name: Add, Commit and Push
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Format"
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ jobs:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: pnpm/[email protected]
with:
version: 8
- uses: pnpm/action-setup@v4

- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
"peerDependencies": {
"solid-js": "^1.8.0"
},
"packageManager": "pnpm@8.13.0",
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18",
"pnpm": ">=8.12.0"
"node": ">=20",
"pnpm": ">=9.0.0"
}
}

0 comments on commit 81376f7

Please sign in to comment.