Skip to content

Commit

Permalink
update actions (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
turbocrime authored Jul 3, 2024
1 parent bad78aa commit 92fb83c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/deploy-firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
uses: pnpm/action-setup@v4

- name: Install npm dependencies
run: pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extension-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: built
uses: buildjet/cache@v3
uses: buildjet/cache@v4
with:
path: .turbo
key: ${{ hashFiles('pnpm-lock.yaml') }}-${{ github.ref }}-${{ github.sha }}-publish
restore-keys: ${{ hashFiles('pnpm-lock.yaml') }}-${{ github.ref }}-${{ github.sha }}-test
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
- uses: buildjet/setup-node@v4
with:
node-version: '22'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/turbo-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: lint
uses: buildjet/cache@v3
uses: buildjet/cache@v4
with:
path: .turbo
key: ${{ hashFiles('pnpm-lock.yaml') }}-${{ github.ref }}-${{ github.sha }}-lint
restore-keys: ${{ hashFiles('pnpm-lock.yaml') }}
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
- uses: buildjet/setup-node@v4
with:
node-version: '22'
Expand All @@ -47,12 +47,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: built
uses: buildjet/cache@v3
uses: buildjet/cache@v4
with:
path: .turbo
key: ${{ hashFiles('pnpm-lock.yaml') }}-${{ github.ref }}-${{ github.sha }}-built
restore-keys: ${{ hashFiles('pnpm-lock.yaml') }}
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
- uses: buildjet/setup-node@v4
with:
node-version: '22'
Expand All @@ -66,12 +66,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: tested
uses: buildjet/cache@v3
uses: buildjet/cache@v4
with:
path: .turbo
key: ${{ hashFiles('pnpm-lock.yaml') }}-${{ github.ref }}-${{ github.sha }}-test
restore-keys: ${{ hashFiles('pnpm-lock.yaml') }}
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
- uses: buildjet/setup-node@v4
with:
node-version: '22'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "prax-wallet",
"private": true,
"license": "(MIT OR Apache-2.0)",
"packageManager": "pnpm@9.1.2",
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"scripts": {
"all-check": "pnpm clean && pnpm install && pnpm lint && pnpm build && pnpm test",
"buf-update": "pnpm update --latest \"@buf/*\" \"@bufbuild/*\" \"@connectrpc/*\" && pnpm syncpack fix-mismatches && pnpm install",
Expand Down

0 comments on commit 92fb83c

Please sign in to comment.