aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/builds.yml')
-rw-r--r--.github/workflows/builds.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index fb9b6cd..02557ec 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -25,16 +25,16 @@ jobs:
25 - name: Print latest commit 25 - name: Print latest commit
26 run: echo ${{ github.sha }} 26 run: echo ${{ github.sha }}
27 - name: Checkout code 27 - name: Checkout code
28 uses: actions/checkout@v3 28 uses: actions/checkout@v4
29 - name: Install pnpm 29 - name: Install pnpm
30 uses: pnpm/action-setup@v2 30 uses: pnpm/action-setup@v3
31 - name: Use Node.js specified in the '.nvmrc' file 31 - name: Use Node.js specified in the '.nvmrc' file
32 uses: actions/setup-node@v3 32 uses: actions/setup-node@v4
33 with: 33 with:
34 node-version-file: '.nvmrc' 34 node-version-file: '.nvmrc'
35 cache: 'pnpm' 35 cache: 'pnpm'
36 - name: Install node dependencies recursively 36 - name: Install node dependencies recursively
37 uses: nick-fields/retry@v2.8.3 37 uses: nick-fields/retry@v3
38 with: 38 with:
39 command: pnpm i 39 command: pnpm i
40 timeout_minutes: 15 40 timeout_minutes: 15