Skip to content

Commit

Permalink
Fix deprecated actions/checkout #1204 (#1208)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaifroid authored Feb 11, 2024
1 parent 3890cc2 commit 9d5a2c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 9d5a2c2

Please sign in to comment.