aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-pr.yml
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-24 12:35:52 -0600
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-07-26 17:41:34 +0000
commit7c985caee07f9ff5e916004623017c453f26f0ac (patch)
treebb9c2b712ddb0bbac1fa6fca222433a3ec97d9fc /.github/workflows/check-pr.yml
parentImprove lint setup (#400) (diff)
downloadferdium-recipes-7c985caee07f9ff5e916004623017c453f26f0ac.tar.gz
ferdium-recipes-7c985caee07f9ff5e916004623017c453f26f0ac.tar.zst
ferdium-recipes-7c985caee07f9ff5e916004623017c453f26f0ac.zip
ci: modernize github actions
- use ubuntu-22.04 runner instead of ubuntu-20.04 - use pnpm/action-setup instead of handling pnpm install manually - upgrade tj-actions/changed-files from v36 to v37 - define packageManager config option in package.json which is read by pnpm/action-setup
Diffstat (limited to '.github/workflows/check-pr.yml')
-rw-r--r--.github/workflows/check-pr.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml
index 5fff282..a9a4d97 100644
--- a/.github/workflows/check-pr.yml
+++ b/.github/workflows/check-pr.yml
@@ -8,13 +8,13 @@ on:
8jobs: 8jobs:
9 check: 9 check:
10 name: Check Recipe Version Bump 10 name: Check Recipe Version Bump
11 runs-on: ubuntu-20.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@v3
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@v36 17 - uses: tj-actions/changed-files@v37
18 id: changed-files 18 id: changed-files
19 - name: Checking recipe version bump 19 - name: Checking recipe version bump
20 uses: ./.github/workflows/check-recipe-version-bump 20 uses: ./.github/workflows/check-recipe-version-bump