Skip to content

Commit 0142fdd

Browse files
committed
Increase action version. Try to fix "if".
1 parent 6f40cdb commit 0142fdd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/job-compile-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919
runs-on: ${{ inputs.runner-env }}
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Use Node.js 20
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: 20
2828

2929
- name: Delete .npmrc file (Windows)
30-
if: runner.os == "Windows"
30+
if: ${{ runner.os == 'Windows' }}
3131
run: Remove-Item -Path $env:USERPROFILE\.npmrc -Force
3232

3333
- name: Delete .npmrc file (Unix)
34-
if: runner.os != "Windows"
34+
if: ${{ runner.os != 'Windows' }}
3535
run: rm -f $HOME/.npmrc
3636

3737
- name: Install Dependencies

0 commit comments

Comments
 (0)