Skip to content

Commit 3eb8e00

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 2b27e63 commit 3eb8e00

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: .github/workflows/release.yml

+5-5
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
@@ -50,7 +50,7 @@ jobs:
5050
- name: Show info about the build phar with humbug/box
5151
run: php box.phar info -l parallel-lint.phar
5252

53-
- uses: actions/upload-artifact@v2
53+
- uses: actions/upload-artifact@v3
5454
with:
5555
name: parallel-lint-phar
5656
path: ./parallel-lint.phar
@@ -80,9 +80,9 @@ jobs:
8080

8181
steps:
8282
- name: Checkout code
83-
uses: actions/checkout@v2
83+
uses: actions/checkout@v3
8484

85-
- uses: actions/download-artifact@v2
85+
- uses: actions/download-artifact@v3
8686
with:
8787
name: parallel-lint-phar
8888

@@ -104,7 +104,7 @@ jobs:
104104
- verify
105105

106106
steps:
107-
- uses: actions/download-artifact@v2
107+
- uses: actions/download-artifact@v3
108108
with:
109109
name: parallel-lint-phar
110110

Diff for: .github/workflows/test.yml

+5-5
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
@@ -73,7 +73,7 @@ jobs:
7373
- name: Show info about the build phar with humbug/box
7474
run: php box.phar info -l parallel-lint.phar
7575

76-
- uses: actions/upload-artifact@v2
76+
- uses: actions/upload-artifact@v3
7777
with:
7878
name: parallel-lint-phar
7979
path: ./parallel-lint.phar
@@ -103,7 +103,7 @@ jobs:
103103

104104
steps:
105105
- name: Checkout code
106-
uses: actions/checkout@v2
106+
uses: actions/checkout@v3
107107

108108
- name: Setup PHP
109109
uses: shivammathur/setup-php@v2
@@ -135,7 +135,7 @@ jobs:
135135
if: ${{ matrix.php >= 5.6 }}
136136
run: composer test
137137

138-
- uses: actions/download-artifact@v2
138+
- uses: actions/download-artifact@v3
139139
with:
140140
name: parallel-lint-phar
141141

0 commit comments

Comments
 (0)