Skip to content

Commit

Permalink
TASK: Use actions/checkout@v4 for workflow
Browse files Browse the repository at this point in the history
Changes node runtime for action from node16 to node20, as described in https://github.com/actions/checkout/releases/tag/v4.0.0
  • Loading branch information
markusguenther committed Feb 23, 2024
1 parent 515ca07 commit a22167d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Maybe remove base branch label
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ubuntu-latest
name: 'Code style'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
Expand All @@ -26,8 +26,8 @@ jobs:
runs-on: ubuntu-latest
name: 'Unit tests'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
Expand Down

0 comments on commit a22167d

Please sign in to comment.