diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e37f122..41f7018 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd8a649..abcb126 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | @@ -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 diff --git a/README.md b/README.md index 7ec1d75..05b0f42 100644 --- a/README.md +++ b/README.md @@ -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: | @@ -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 }}