Skip to content

Commit 1383831

Browse files
committed
fixup! ci: add new VFS for Git functional tests workflow
Bump actions/checkout v4 to v6, actions/upload-artifact v6 to v7, actions/download-artifact v4 to v8, and git-for-windows/setup-git-for-windows-sdk v1 to v2. All bumps are Node.js 20 to 24 runtime migrations. checkout v6 moves persisted credentials to ``, which is irrelevant here. upload-artifact v7 and download-artifact v8 are a coupled pair maintaining the artifact format contract; the new opt-in `archive: false` parameter is not used. setup-sdk v2 provisions the same minimal SDK as v1. Risk: very low. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 90ef05b commit 1383831

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/vfs-functional-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
steps:
2424
- name: Check out Git's source code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Setup build tools
28-
uses: git-for-windows/setup-git-for-windows-sdk@v1
28+
uses: git-for-windows/setup-git-for-windows-sdk@v2
2929
with:
3030
architecture: ${{ matrix.architecture }}
3131

@@ -79,7 +79,7 @@ jobs:
7979
make -j5 DESTDIR="$GITHUB_WORKSPACE/MicrosoftGit/payload/${{ matrix.architecture }}" install
8080
8181
- name: Upload Git artifact
82-
uses: actions/upload-artifact@v6
82+
uses: actions/upload-artifact@v7
8383
with:
8484
name: MicrosoftGit-${{ matrix.architecture }}
8585
path: MicrosoftGit
@@ -94,13 +94,13 @@ jobs:
9494

9595
steps:
9696
- name: Download x86_64 build
97-
uses: actions/download-artifact@v4
97+
uses: actions/download-artifact@v8
9898
with:
9999
name: MicrosoftGit-x86_64
100100
path: MicrosoftGit
101101

102102
- name: Download aarch64 build
103-
uses: actions/download-artifact@v4
103+
uses: actions/download-artifact@v8
104104
with:
105105
name: MicrosoftGit-aarch64
106106
path: MicrosoftGit
@@ -123,7 +123,7 @@ jobs:
123123
BATCH
124124
125125
- name: Upload Git artifact
126-
uses: actions/upload-artifact@v6
126+
uses: actions/upload-artifact@v7
127127
with:
128128
name: MicrosoftGit
129129
path: MicrosoftGit

0 commit comments

Comments
 (0)