Skip to content

Commit

Permalink
Switch to v3 of checkout action
Browse files Browse the repository at this point in the history
v2 seems to still use Node.js 12, which is deprecated and causes lots of
annotations/warnings in our workflows.
  • Loading branch information
lunkwill42 committed Jan 4, 2023
1 parent deb0399 commit 05fe1e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: "Cache pip packages"
uses: actions/cache@v3
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
name: "Test Javascript code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: browser-actions/setup-chrome@latest
- uses: browser-actions/setup-firefox@latest
- run: chrome --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockercompose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: docker-compose build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down

0 comments on commit 05fe1e8

Please sign in to comment.