Skip to content

Commit 0052e2b

Browse files
authored
Fix/release workflows (#1198)
* bump to pnpm v9 * bump cache from v2 to v4 * rm pnpm setup verstion in workflows since package.json version is used
1 parent 80478af commit 0052e2b

15 files changed

+11397
-9037
lines changed

.github/workflows/build-mac-arm64.yml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
node-version: '20'
2323
- uses: pnpm/action-setup@v3
2424
with:
25-
version: 9
2625
standalone: ${{ runner.os == 'Windows' }}
2726
- name: Install node-gyp
2827
run: pnpm add --global node-gyp

.github/workflows/build.yml

-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
node-version: '20'
2929
- uses: pnpm/action-setup@v3
3030
with:
31-
version: 9
3231
standalone: ${{ runner.os == 'Windows' }}
3332
- name: Install node-gyp
3433
run: pnpm add --global node-gyp
@@ -74,7 +73,6 @@ jobs:
7473
node-version: '20'
7574
- uses: pnpm/action-setup@v3
7675
with:
77-
version: 9
7876
standalone: ${{ runner.os == 'Windows' }}
7977
- name: Install node-gyp
8078
run: pnpm add --global node-gyp
@@ -112,7 +110,6 @@ jobs:
112110
node-version: '20'
113111
- uses: pnpm/action-setup@v3
114112
with:
115-
version: 9
116113
standalone: ${{ runner.os == 'Windows' }}
117114
- name: Install node-gyp
118115
run: pnpm add --global node-gyp

.github/workflows/codecheck.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
node-version: '20'
2020
- uses: pnpm/action-setup@v3
2121
with:
22-
version: 9
2322
standalone: ${{ runner.os == 'Windows' }}
2423
- name: Install node-gyp
2524
run: pnpm add --global node-gyp

.github/workflows/flatpak-build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
node-version: '22'
3838
- uses: pnpm/action-setup@v3
3939
with:
40-
version: 9
4140
standalone: ${{ runner.os == 'Windows' }}
4241
- name: Install node-gyp
4342
run: pnpm add --global node-gyp

.github/workflows/lint.yml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
node-version: '20'
1919
- uses: pnpm/action-setup@v3
2020
with:
21-
version: 9
2221
standalone: ${{ runner.os == 'Windows' }}
2322
- name: Install node-gyp
2423
run: pnpm add --global node-gyp

.github/workflows/release_flathub.yml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
node-version: '20'
2525
- uses: pnpm/action-setup@v3
2626
with:
27-
version: 9
2827
standalone: ${{ runner.os == 'Windows' }}
2928
- name: Install node-gyp
3029
run: pnpm add --global node-gyp

.github/workflows/release_linux.yml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
node-version: '20'
2727
- uses: pnpm/action-setup@v3
2828
with:
29-
version: 9
3029
standalone: ${{ runner.os == 'Windows' }}
3130
- name: Install node-gyp
3231
run: pnpm add --global node-gyp

.github/workflows/release_macOS.yml

-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
node-version: '20'
3131
- uses: pnpm/action-setup@v4
3232
with:
33-
version: 9
3433
standalone: ${{ runner.os == 'Windows' }}
3534
- name: Install node-gyp
3635
run: pnpm add --global node-gyp
@@ -80,8 +79,6 @@ jobs:
8079
node-version: '20'
8180

8281
- uses: pnpm/action-setup@v4
83-
with:
84-
version: 9
8582

8683
- name: Reconfigure git to use HTTP authentication
8784
run: >

.github/workflows/release_snap.yml

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
node-version: '20'
2424
- uses: pnpm/action-setup@v3
2525
with:
26-
version: 9
2726
standalone: ${{ runner.os == 'Windows' }}
2827
- name: Install node-gyp
2928
run: pnpm add --global node-gyp

.github/workflows/release_windows.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Cache dependencies
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: |
2323
node_modules
@@ -37,7 +37,6 @@ jobs:
3737
node-version: '20'
3838
- uses: pnpm/action-setup@v3
3939
with:
40-
version: 9
4140
standalone: ${{ runner.os == 'Windows' }}
4241
- name: Install node-gyp
4342
run: pnpm add --global node-gyp
@@ -59,7 +58,7 @@ jobs:
5958
echo "VITE_IPFS_API=${{ secrets.VITE_IPFS_API }}" >> .env.production
6059
6160
- name: Cache artifacts
62-
uses: actions/cache@v2
61+
uses: actions/cache@v4
6362
with:
6463
path: |
6564
dist

.github/workflows/test-e2e-dev.yml

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ jobs:
8787
node-version: '20'
8888
- uses: pnpm/action-setup@v3
8989
with:
90-
version: 9
9190
standalone: ${{ runner.os == 'Windows' }}
9291
- name: Install node-gyp
9392
run: pnpm add --global node-gyp

.github/workflows/test-e2e-packaged.yml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
node-version: '20'
3131
- uses: pnpm/action-setup@v3
3232
with:
33-
version: 9
3433
standalone: ${{ runner.os == 'Windows' }}
3534
- name: Install node-gyp
3635
run: pnpm add --global node-gyp

.github/workflows/test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
echo "VITE_IPFS_API=${{ secrets.VITE_IPFS_API }}" >> .env
3434
- uses: pnpm/action-setup@v3
3535
with:
36-
version: 9
3736
standalone: ${{ runner.os == 'Windows' }}
3837
- name: Install node-gyp
3938
run: pnpm add --global node-gyp

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,5 +408,5 @@
408408
"sass>@parcel/watcher": false
409409
}
410410
},
411-
"packageManager": "pnpm@8.7.6+sha1.a428b12202bc4f23b17e6dffe730734dae5728e2"
411+
"packageManager": "pnpm@9.15.0+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28"
412412
}

0 commit comments

Comments
 (0)