Skip to content

Commit d24ba4c

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 * https://github.com/actions/upload-artifact/releases php/doc-en@971e603
1 parent 9025eab commit d24ba4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integrate.yaml

Lines changed: 3 additions & 3 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"

0 commit comments

Comments
 (0)