From 9d5a2c219a20e1aa292feae5e1e41c8349f8e87a Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sun, 11 Feb 2024 19:01:09 +0000 Subject: [PATCH] Fix deprecated actions/checkout #1204 (#1208) --- .github/workflows/CI.yml | 8 ++++---- .github/workflows/Release.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/publish-extension.yaml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7cf588df..75d59b5b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 63887a5e..a82795df 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -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 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 64d65b7a..6bcad9f8 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -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 diff --git a/.github/workflows/publish-extension.yaml b/.github/workflows/publish-extension.yaml index ac648dc4..55aa9bed 100644 --- a/.github/workflows/publish-extension.yaml +++ b/.github/workflows/publish-extension.yaml @@ -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 }}