Skip to content
Closed
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/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Checkout ADBC
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: "pre-commit"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_adbc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: "pre-commit"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: Process
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand All @@ -52,7 +52,7 @@ jobs:
run: |
./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}" ${{github.event.number}}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
path: pr_checkout
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
name: "DuckDB Integration Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
name: "FlightSQL Integration Tests (Dremio and SQLite)"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
name: "PostgreSQL Integration Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
name: "Snowflake Integration Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
name: "FlightSQL C# Interop"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
matrix:
java: ['11', '17', '21', '25']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -76,7 +76,7 @@ jobs:
matrix:
java: ['21', '25']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
env:
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down 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@v5
- uses: actions/upload-artifact@v6
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@v5
uses: actions/upload-artifact@v6
with:
name: jni-artifacts-${{ matrix.os }}-${{ matrix.arch }}
retention-days: 7
Expand All @@ -204,12 +204,12 @@ jobs:
- { java: '11', os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner: macos-latest }
- { java: '25', os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner: macos-latest }
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
submodules: recursive
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
path: artifacts
pattern: jni-artifacts-*
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
cd
tar czf ~/local.tgz local

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: driver-manager-${{ matrix.os }}
retention-days: 3
Expand All @@ -162,7 +162,7 @@ jobs:
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
matrix:
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
name: "clang-tidy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
run: |
sudo sysctl vm.mmap_rnd_bits=28

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -400,7 +400,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -454,7 +454,7 @@ jobs:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -534,7 +534,7 @@ jobs:
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -572,7 +572,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand Down Expand Up @@ -654,7 +654,7 @@ jobs:
os: ["ubuntu-latest"]
python: ["3.14"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -683,7 +683,7 @@ jobs:
run: |
sudo sysctl vm.mmap_rnd_bits=28

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: "~"
Expand All @@ -705,7 +705,7 @@ jobs:
run: |
./ci/scripts/docs_build.sh "$(pwd)"
- name: Archive docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: docs
retention-days: 2
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/native-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
matrix:
os: ["windows-latest"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
run: |
.\ci\scripts\cpp_build.ps1 $pwd ${{ github.workspace }}\build

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: driver-manager-${{ matrix.os }}
retention-days: 3
Expand All @@ -120,7 +120,7 @@ jobs:
matrix:
os: ["windows-latest"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
matrix:
os: ["windows-latest"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
cache: true
cache-dependency-path: go/adbc/go.sum

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: ${{ github.workspace }}/build
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
os: ["windows-latest"]
python: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
--file ci\conda_env_cpp.txt `
--file ci\conda_env_python.txt

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: driver-manager-${{ matrix.os }}
path: ${{ github.workspace }}/build
Expand Down
Loading
Loading