Skip to content

Commit

Permalink
Update Checkout v2 -> v4 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
maj113 authored Jan 1, 2024
1 parent 7ab0add commit b8472a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Download Internet
run: npm install
- name: Run eslint
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- run: npm install
- run: npm audit --audit-level=moderate --production
- run: npm audit --audit-level=critical
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Download Internet
run: npm install
- name: Enable Developer Command Prompt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Developer Command Prompt
uses: ilammy/msvc-dev-cmd@release/v1
- name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Compile and run some C code
shell: cmd
run: |
Expand All @@ -26,6 +26,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- 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=critical
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Basic usage for default compilation settings is like this:
jobs:
test:
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Build something requiring CL.EXE
run: |
Expand All @@ -41,7 +41,7 @@ jobs:
- amd64_x86
- amd64_arm64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
Expand Down

0 comments on commit b8472a4

Please sign in to comment.