Skip to content

Commit 4813b12

Browse files
authored
Merge pull request #106 from git-for-windows/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents a2454d5 + 5fc3495 commit 4813b12

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
shell: bash
4040
run: (cd minimal-sdk && tar cvf - * .[0-9A-Za-z]*) | gzip -1 >git-sdk-x86_64-minimal.tar.gz
4141
- name: upload minimal-sdk artifact
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: minimal-sdk
4545
path: git-sdk-x86_64-minimal.tar.gz
@@ -57,7 +57,7 @@ jobs:
5757
shell: bash
5858
run: tar -C .. -czf git-artifacts.tar.gz --exclude '*.a' --exclude '*.o' --exclude .git --exclude .depend git
5959
- name: upload git artifacts for testing
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v5
6161
with:
6262
name: git-artifacts
6363
path: git-artifacts.tar.gz
@@ -81,7 +81,7 @@ jobs:
8181
../minimal-sdk-extra/git-sdk-x86_64-minimal.7z.exe * .?*)
8282
- name: upload minimal-sdk-extra artifacts
8383
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v5
8585
with:
8686
name: minimal-sdk-extra
8787
path: minimal-sdk-extra

.github/workflows/git-artifacts.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
sh -x /usr/src/build-extra/please.sh mention feature "Snapshot of $(git show -s --pretty='tformat:%h (%s, %ad)' --date=short FETCH_HEAD)" &&
8181
git -C /usr/src/build-extra bundle create "$PWD/bundle-artifacts/build-extra.bundle" origin/main..main
8282
- name: 'Publish bundle-artifacts'
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
with:
8585
name: bundle-artifacts
8686
path: bundle-artifacts
@@ -127,7 +127,7 @@ jobs:
127127
128128
sh -x /usr/src/build-extra/please.sh build-mingw-w64-git --only-32-bit -o artifacts HEAD
129129
- name: Publish mingw-w64-${{env.ARCH_NAME}}-git
130-
uses: actions/upload-artifact@v4
130+
uses: actions/upload-artifact@v5
131131
with:
132132
name: pkg-${{env.ARCH_NAME}}
133133
path: artifacts
@@ -138,7 +138,7 @@ jobs:
138138
run: |
139139
tar czf build-installers.tgz build-installers/
140140
- name: Publish build-installers.tgz
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v5
142142
with:
143143
name: build-installers.tgz
144144
path: build-installers.tgz
@@ -195,7 +195,7 @@ jobs:
195195
cp "$p"/*-pdb* cached-source-packages/ &&
196196
GIT_CONFIG_PARAMETERS="'windows.sdk${{env.ARCH_BITNESS}}.path='" ./please.sh bundle_pdbs --arch=${{env.ARCH_NAME}} --directory="$a" installer/package-versions.txt)
197197
- name: Publish ${{matrix.artifact}}-${{env.ARCH_NAME}}
198-
uses: actions/upload-artifact@v4
198+
uses: actions/upload-artifact@v5
199199
with:
200200
name: ${{matrix.artifact}}-${{env.ARCH_NAME}}
201201
path: artifacts
@@ -216,7 +216,7 @@ jobs:
216216
"$env:ProgramFiles\Git\mingw${{env.ARCH_BITNESS}}\bin" | Out-File -Encoding ascii -Append $env:GITHUB_PATH
217217
- name: Publish installer log
218218
if: matrix.artifact == 'installer' && (failure() || success())
219-
uses: actions/upload-artifact@v4
219+
uses: actions/upload-artifact@v5
220220
with:
221221
name: installer.log
222222
path: installer.log

0 commit comments

Comments
 (0)