Fix deprecated actions/checkout #1204 (#1208)

This commit is contained in:
Jaifroid 2024-02-11 19:01:09 +00:00 committed by GitHub
parent 3890cc263a
commit 9d5a2c219a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
@ -37,7 +37,7 @@ jobs:
timeout-minutes: 30
steps:
# Clone the repo and checkout the commit for which the workflow was triggered
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test integrity of app parameters
run: |
@ -157,7 +157,7 @@ jobs:
timeout-minutes: 30
steps:
# Clone the repo and checkout the commit for which the workflow was triggered
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
@ -198,7 +198,7 @@ jobs:
# runs-on: macos-latest
# steps:
# # Clone the repo and checkout the commit for which the workflow was triggered
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: Install dependencies
# run: npm ci

View File

@ -36,7 +36,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Build the production version of the app
- name: Build app for production

View File

@ -39,7 +39,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL

View File

@ -41,7 +41,7 @@ jobs:
name: Deploy browser extension to Docker and/or GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Modify version in source files
env:
INPUT_VERSION: ${{ inputs.version }}