Skip to content

Commit

Permalink
Merge pull request #78 from git-for-windows/dependabot/github_actions…
Browse files Browse the repository at this point in the history
…/actions/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
rimrul authored Feb 7, 2024
2 parents 8b03a1b + 84b3cc1 commit 7a92a0a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: bash
run: (cd minimal-sdk && tar cvf - * .[0-9A-Za-z]*) | gzip -1 >git-sdk-64-minimal.tar.gz
- name: upload minimal-sdk artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: minimal-sdk
path: git-sdk-64-minimal.tar.gz
Expand All @@ -60,7 +60,7 @@ jobs:
shell: bash
run: tar -C .. -czf git-artifacts.tar.gz --exclude '*.a' --exclude '*.o' --exclude .git --exclude .depend git
- name: upload git artifacts for testing
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: git-artifacts
path: git-artifacts.tar.gz
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
sh -x /usr/src/build-extra/please.sh mention feature "Snapshot of $(git show -s --pretty='tformat:%h (%s, %ad)' --date=short FETCH_HEAD)" &&
git -C /usr/src/build-extra bundle create "$PWD/bundle-artifacts/build-extra.bundle" origin/main..main
- name: 'Publish bundle-artifacts'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundle-artifacts
path: bundle-artifacts
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
sh -x /usr/src/build-extra/please.sh build-mingw-w64-git --only-32-bit -o artifacts HEAD
- name: Publish mingw-w64-${{env.ARCH_NAME}}-git
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkg-${{env.ARCH_NAME}}
path: artifacts
Expand All @@ -138,7 +138,7 @@ jobs:
run: |
tar czf build-installers.tgz build-installers/
- name: Publish build-installers.tgz
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-installers.tgz
path: build-installers.tgz
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
cp "$p"/*-pdb* cached-source-packages/ &&
GIT_CONFIG_PARAMETERS="'windows.sdk${{env.ARCH_BITNESS}}.path='" ./please.sh bundle_pdbs --arch=${{env.ARCH_NAME}} --directory="$a" installer/package-versions.txt)
- name: Publish ${{matrix.artifact}}-${{env.ARCH_NAME}}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{matrix.artifact}}-${{env.ARCH_NAME}}
path: artifacts
Expand All @@ -216,7 +216,7 @@ jobs:
"$env:ProgramFiles\Git\mingw${{env.ARCH_BITNESS}}\bin" | Out-File -Encoding ascii -Append $env:GITHUB_PATH
- name: Publish installer log
if: matrix.artifact == 'installer' && (failure() || success())
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: installer.log
path: installer.log
Expand Down

0 comments on commit 7a92a0a

Please sign in to comment.