Update Checkout v2 -> v4 (#71)

This commit is contained in:
Maj Soklič
2024-01-01 04:57:22 +01:00
committed by GitHub
parent 7ab0add6fc
commit b8472a4c87
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Download Internet - name: Download Internet
run: npm install run: npm install
- name: Run eslint - name: Run eslint
@@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v2 uses: actions/checkout@v4
- run: npm install - run: npm install
- run: npm audit --audit-level=moderate --production - run: npm audit --audit-level=moderate --production
- run: npm audit --audit-level=critical - run: npm audit --audit-level=critical
@@ -70,7 +70,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Download Internet - name: Download Internet
run: npm install run: npm install
- name: Enable Developer Command Prompt - name: Enable Developer Command Prompt
+2 -2
View File
@@ -15,7 +15,7 @@ jobs:
- name: Setup Developer Command Prompt - name: Setup Developer Command Prompt
uses: ilammy/msvc-dev-cmd@release/v1 uses: ilammy/msvc-dev-cmd@release/v1
- name: Check out source code - name: Check out source code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Compile and run some C code - name: Compile and run some C code
shell: cmd shell: cmd
run: | run: |
@@ -26,6 +26,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v2 uses: actions/checkout@v4
- run: npm audit --audit-level=moderate --production - run: npm audit --audit-level=moderate --production
- run: npm audit --audit-level=critical - run: npm audit --audit-level=critical
+2 -2
View File
@@ -16,7 +16,7 @@ Basic usage for default compilation settings is like this:
jobs: jobs:
test: test:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1 - uses: ilammy/msvc-dev-cmd@v1
- name: Build something requiring CL.EXE - name: Build something requiring CL.EXE
run: | run: |
@@ -41,7 +41,7 @@ jobs:
- amd64_x86 - amd64_x86
- amd64_arm64 - amd64_arm64
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1 - uses: ilammy/msvc-dev-cmd@v1
with: with:
arch: ${{ matrix.arch }} arch: ${{ matrix.arch }}