Skip to content

Commit 0cdfe3e

Browse files
authored
PHPC-2365: Update GitHub actions to use Node 20 (#1528)
2 parents fe1556f + 5a1630a commit 0cdfe3e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/windows-release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Download DLL and PDB files
23-
uses: dawidd6/action-download-artifact@v2
23+
uses: dawidd6/action-download-artifact@v3
2424
with:
2525
workflow: windows-tests.yml
2626
workflow_conclusion: success

.github/workflows/windows-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Cache build artifacts for subsequent builds
5151
id: cache-build-artifacts
52-
uses: actions/cache/save@v3
52+
uses: actions/cache/save@v4
5353
with:
5454
key: ${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}
5555
path: |
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Upload DLL and PDB files as build artifacts
6969
if: ${{ github.event_name == 'push' }}
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
with:
7272
name: php_mongodb-${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}
7373
path: |
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Restore cached build artifacts
110110
id: cache-build-artifacts
111-
uses: actions/cache/restore@v3
111+
uses: actions/cache/restore@v4
112112
with:
113113
fail-on-cache-miss: true
114114
key: ${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}

0 commit comments

Comments
 (0)