Skip to content

Commit a167815

Browse files
committed
GH Actions: version update for various predefined actions
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
1 parent 968ab01 commit a167815

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/basics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727

2828
- name: Install PHP
2929
uses: shivammathur/setup-php@v2

.github/workflows/quicktest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout code
48-
uses: actions/checkout@v2
48+
uses: actions/checkout@v3
4949

5050
# On stable PHPCS versions, allow for PHP deprecation notices.
5151
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
- name: Install PHP
4040
uses: shivammathur/setup-php@v2
@@ -107,7 +107,7 @@ jobs:
107107

108108
steps:
109109
- name: Checkout code
110-
uses: actions/checkout@v2
110+
uses: actions/checkout@v3
111111

112112
# On stable PHPCS versions, allow for PHP deprecation notices.
113113
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.

0 commit comments

Comments
 (0)