Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ jobs:
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
docker compose down
docker compose rm -fsv
- uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
- uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
- name: Run PostgreSQL Validation Suite
run: |
env POSTGRES_VERSION=18 docker compose up --wait --detach postgres-test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
ls -laR artifacts
mv artifacts artifacts-${{ matrix.os }}-${{ matrix.arch }}
tar czf artifacts-${{ matrix.os }}-${{ matrix.arch }}.tgz artifacts-${{ matrix.os }}-${{ matrix.arch }}
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: jni-artifacts-${{ matrix.os }}-${{ matrix.arch }}
retention-days: 7
Expand All @@ -185,7 +185,7 @@ jobs:
find "$VCPKG_ROOT" -name 'build-*.log' -exec cp '{}' ~/logs ';'
- name: Upload failure logs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: jni-artifacts-${{ matrix.os }}-${{ matrix.arch }}
retention-days: 7
Expand All @@ -209,7 +209,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
submodules: recursive
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
path: artifacts
pattern: jni-artifacts-*
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
cd
tar czf ~/local.tgz local

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
retention-days: 3
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
run: |
sudo sysctl vm.mmap_rnd_bits=28

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -572,7 +572,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -689,7 +689,7 @@ jobs:
run: |
sudo sysctl vm.mmap_rnd_bits=28

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand All @@ -711,7 +711,7 @@ jobs:
run: |
./ci/scripts/docs_build.sh "$(pwd)"
- name: Archive docs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: docs
retention-days: 2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/native-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: |
.\ci\scripts\cpp_build.ps1 $pwd ${{ github.workspace }}\build

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
retention-days: 3
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: ${{ github.workspace }}/build
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
--file ci\conda_env_cpp.txt `
--file ci\conda_env_python.txt

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: driver-manager-${{ matrix.os }}
path: ${{ github.workspace }}/build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
shasum --algorithm 512 \
apache-arrow-adbc-${VERSION}.tar.gz > apache-arrow-adbc-${VERSION}.tar.gz.sha512

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: source
retention-days: 7
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')
echo "VERSION=${VERSION}" >> $GITHUB_ENV

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: source
path: ${{ github.workspace }}/apache-arrow-adbc-${{ env.VERSION }}-rc0/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
docker compose run docs
- name: Archive docs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: docs
retention-days: 2
Expand All @@ -74,7 +74,7 @@ jobs:
path: scripts
persist-credentials: false
- name: Download docs
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: docs
path: temp
Expand Down
Loading
Loading