aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-02-10 12:53:59 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-02-10 07:50:49 +0000
commit73845dfa016c94de009be5057d793cdaabbb57bc (patch)
treecd4dc818725a41803e61a31b888dd25cd6b068ca /.github
parentupgrade pnpm and other deps (diff)
downloadferdium-recipes-73845dfa016c94de009be5057d793cdaabbb57bc.tar.gz
ferdium-recipes-73845dfa016c94de009be5057d793cdaabbb57bc.tar.zst
ferdium-recipes-73845dfa016c94de009be5057d793cdaabbb57bc.zip
upgrade GHA actions to newer versions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml8
-rw-r--r--.github/workflows/check-pr.yml2
2 files changed, 5 insertions, 5 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
diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml
index a9a4d97..b94da53 100644
--- a/.github/workflows/check-pr.yml
+++ b/.github/workflows/check-pr.yml
@@ -11,7 +11,7 @@ jobs:
11 runs-on: ubuntu-22.04 11 runs-on: ubuntu-22.04
12 steps: 12 steps:
13 - name: Checkout code 13 - name: Checkout code
14 uses: actions/checkout@v3 14 uses: actions/checkout@v4
15 - name: Fetch main branch 15 - name: Fetch main branch
16 run: git fetch origin main --depth 1 16 run: git fetch origin main --depth 1
17 - uses: tj-actions/changed-files@v37 17 - uses: tj-actions/changed-files@v37