From 740fe058237365a2259895be1d8356237e442985 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 20:26:54 +0000 Subject: [PATCH] chore: bump actions/setup-go from 3 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dev.yml | 2 +- .github/workflows/integration.yml | 4 ++-- .github/workflows/native-unix.yml | 8 ++++---- .github/workflows/native-windows.yml | 2 +- .github/workflows/packaging.yml | 4 ++-- .github/workflows/r-check.yml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index cdbc1296ab..dbd5589239 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -37,7 +37,7 @@ jobs: with: fetch-depth: 0 persist-credentials: false - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version-file: 'go/adbc/go.mod' check-latest: true diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ba1ed14448..bd6d79d16f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -129,7 +129,7 @@ jobs: --file ci/conda_env_cpp.txt \ --file ci/conda_env_python.txt pip install pytest-error-for-skips - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true @@ -348,7 +348,7 @@ jobs: mamba install -c conda-forge \ --file ci/conda_env_cpp.txt \ --file ci/conda_env_python.txt - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true diff --git a/.github/workflows/native-unix.yml b/.github/workflows/native-unix.yml index d8084da790..c498cb96c7 100644 --- a/.github/workflows/native-unix.yml +++ b/.github/workflows/native-unix.yml @@ -94,7 +94,7 @@ jobs: run: | mamba install -c conda-forge \ --file ci/conda_env_cpp.txt - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true @@ -298,7 +298,7 @@ jobs: with: fetch-depth: 0 persist-credentials: false - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version-file: 'go/adbc/go.mod' check-latest: true @@ -357,7 +357,7 @@ jobs: run: | mamba install -c conda-forge \ --file ci/conda_env_cpp.txt - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true @@ -437,7 +437,7 @@ jobs: python=${{ matrix.python }} \ --file ci/conda_env_cpp.txt \ --file ci/conda_env_python.txt - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true diff --git a/.github/workflows/native-windows.yml b/.github/workflows/native-windows.yml index 747495a635..acee122c6b 100644 --- a/.github/workflows/native-windows.yml +++ b/.github/workflows/native-windows.yml @@ -221,7 +221,7 @@ jobs: run: | mamba install -c conda-forge \ --file ci/conda_env_cpp.txt - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.20.8 check-latest: true diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index d6dd0b01ff..82b39bc163 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -605,7 +605,7 @@ jobs: ci/scripts/install_vcpkg.sh $VCPKG_ROOT ${{ steps.vcpkg_version.outputs.VCPKG_VERSION }} popd - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.19.13 check-latest: true @@ -729,7 +729,7 @@ jobs: # Windows needs newer Go than 1.19 # https://github.com/golang/go/issues/51007 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.20.8 check-latest: true diff --git a/.github/workflows/r-check.yml b/.github/workflows/r-check.yml index a6e6983097..e29f7f3ed7 100644 --- a/.github/workflows/r-check.yml +++ b/.github/workflows/r-check.yml @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '1.20' - uses: r-lib/actions/setup-r@v2