Skip to content

Commit da3ea49

Browse files
jrfnlgrogy
authored andcommitted
GH Actions: version update for various predefined actions
A number of predefined actions have had major release, which warrant an update to 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 * https://github.com/actions/download-artifact/releases * https://github.com/actions/upload-artifact/releases
1 parent dd1ea0b commit da3ea49

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
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: Setup PHP
2929
uses: shivammathur/setup-php@v2
@@ -54,7 +54,7 @@ jobs:
5454
- name: Show info about the build phar with humbug/box
5555
run: php box.phar info -l parallel-lint.phar
5656

57-
- uses: actions/upload-artifact@v2
57+
- uses: actions/upload-artifact@v3
5858
with:
5959
name: parallel-lint-phar
6060
path: ./parallel-lint.phar
@@ -85,9 +85,9 @@ jobs:
8585

8686
steps:
8787
- name: Checkout code
88-
uses: actions/checkout@v2
88+
uses: actions/checkout@v3
8989

90-
- uses: actions/download-artifact@v2
90+
- uses: actions/download-artifact@v3
9191
with:
9292
name: parallel-lint-phar
9393

@@ -109,7 +109,7 @@ jobs:
109109
- verify
110110

111111
steps:
112-
- uses: actions/download-artifact@v2
112+
- uses: actions/download-artifact@v3
113113
with:
114114
name: parallel-lint-phar
115115

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
tools: cs2pr
2929

3030
- name: Checkout code
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
- name: Install Composer dependencies
3434
uses: ramsey/composer-install@v2
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v3
5050

5151
- name: Setup PHP
5252
uses: shivammathur/setup-php@v2
@@ -77,7 +77,7 @@ jobs:
7777
- name: Show info about the build phar with humbug/box
7878
run: php box.phar info -l parallel-lint.phar
7979

80-
- uses: actions/upload-artifact@v2
80+
- uses: actions/upload-artifact@v3
8181
with:
8282
name: parallel-lint-phar
8383
path: ./parallel-lint.phar
@@ -109,7 +109,7 @@ jobs:
109109

110110
steps:
111111
- name: Checkout code
112-
uses: actions/checkout@v2
112+
uses: actions/checkout@v3
113113

114114
- name: Setup PHP
115115
uses: shivammathur/setup-php@v2
@@ -141,7 +141,7 @@ jobs:
141141
if: ${{ matrix.php >= 5.6 }}
142142
run: composer test
143143

144-
- uses: actions/download-artifact@v2
144+
- uses: actions/download-artifact@v3
145145
with:
146146
name: parallel-lint-phar
147147

0 commit comments

Comments
 (0)