Skip to content

Commit

Permalink
GH Actions: version update for various predefined actions
Browse files Browse the repository at this point in the history
A number of predefined actions have had major release, which warrant an update the workflow(s).

These updates don't actually contain any changed functionality, they are mostly just a change of the Node version used by the action itself (from Node 14 to Node 16).

Refs:
* https://github.com/actions/checkout/releases
  • Loading branch information
jrfnl committed Mar 5, 2022
1 parent 6085843 commit 70cc0a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand All @@ -36,7 +36,7 @@ jobs:
- "v2"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Install expect"
run: |
sudo apt-get update
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Install expect"
run: |
sudo apt-get update
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Run shellcheck"
run: "shellcheck --exclude=SC2230 bin/*.sh tests/*.sh"

Expand All @@ -115,7 +115,7 @@ jobs:
- ""
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
- "v2"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v2"
uses: "actions/checkout@v3"
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand Down

0 comments on commit 70cc0a1

Please sign in to comment.