Skip to content

Commit

Permalink
GH Actions: version update for various predefined actions (#222)
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

Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>
  • Loading branch information
jrfnl and jrfnl committed Mar 14, 2022
1 parent 6085843 commit d515102
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -172,7 +172,7 @@ strategy:
composer-options: "--ignore-platform-reqs"

steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"
- uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php }}"
Expand Down

0 comments on commit d515102

Please sign in to comment.