Skip to content

Commit 971e603

Browse files
authored
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 * https://github.com/actions/upload-artifact/releases Co-authored-by: jrfnl <[email protected]> Closes GH-1442.
1 parent 930b638 commit 971e603

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/integrate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout php/doc-${{ matrix.language }}"
24-
uses: "actions/checkout@v2"
24+
uses: "actions/checkout@v3"
2525
with:
2626
path: "${{ matrix.language }}"
2727
repository: "php/doc-${{ matrix.language }}"
2828

2929
- name: "Checkout php/doc-en as fallback"
3030
if: "matrix.language != 'en'"
31-
uses: "actions/checkout@v2"
31+
uses: "actions/checkout@v3"
3232
with:
3333
path: "en"
3434
repository: "php/doc-en"
3535

3636
- name: "Checkout php/doc-base"
37-
uses: "actions/checkout@v2"
37+
uses: "actions/checkout@v3"
3838
with:
3939
path: "doc-base"
4040
repository: "php/doc-base"
@@ -46,7 +46,7 @@ jobs:
4646
run: "php8.0 doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"
4747

4848
- name: "Upload .manual.xml"
49-
uses: actions/upload-artifact@v2
49+
uses: actions/upload-artifact@v3
5050
with:
5151
name: .manual.xml
5252
path: doc-base/.manual.xml

0 commit comments

Comments
 (0)