This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 3d4f9e3dd chore: bump last instance of `actions/*-artifact` to v4
(#2329)
3d4f9e3dd is described below
commit 3d4f9e3ddadd4643fbdb7425372582e898fe78f2
Author: Jacob Wujciak-Jens <[email protected]>
AuthorDate: Fri Nov 15 13:48:28 2024 +0100
chore: bump last instance of `actions/*-artifact` to v4 (#2329)
This instance was merged a day after everything else was bumped and as
the dependabot PR was closed it's ignoring it.
---
.github/workflows/packaging.yml | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index fc5cd5edb..2cda890e1 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -132,8 +132,9 @@ jobs:
popd
- name: Upload Go binaries
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
+ name: go-${{ matrix.os }}
retention-days: 7
path: |
adbc/go/adbc/pkg/libadbc_driver_flightsql.*
@@ -167,13 +168,15 @@ jobs:
echo "schedule: ${{ github.event.schedule }}" >> $GITHUB_STEP_SUMMARY
echo "ref: ${{ github.ref }}" >> $GITHUB_STEP_SUMMARY
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
with:
+ pattern: go-*
path: adbc/go/adbc/pkg
+ merge-multiple: true
- name: Copy Go binaries
run: |
- pushd adbc/go/adbc/pkg/artifact
+ pushd adbc/go/adbc/pkg/
cp *.dll ../
cp *.so ../
cp *.dylib ../