Skip to content

Commit 23baac6

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c9d88aa commit 23baac6

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
name: Release Audit Tool (RAT)
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
with:
3232
path: datafusion-c
3333
- name: Checkout Arrow
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
path: arrow
3737
repository: apache/arrow
@@ -49,7 +49,7 @@ jobs:
4949
name: Lint
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- uses: actions-rs/toolchain@v1
5454
id: rust-toolchain
5555
with:
@@ -89,7 +89,7 @@ jobs:
8989
- windows-latest
9090
runs-on: ${{ matrix.runs-on }}
9191
steps:
92-
- uses: actions/checkout@v5
92+
- uses: actions/checkout@v6
9393
- uses: actions/setup-python@v6
9494
if: |
9595
matrix.runs-on != 'windows-latest'

.github/workflows/doc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Build
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.x'
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
name: html
8989
path: html/
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
if: |
9292
startsWith(github.ref, 'refs/tags/') ||
9393
github.ref == 'refs/heads/main'

.github/workflows/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
;;
3939
esac
4040
echo "VERSION=${version}" >> ${GITHUB_ENV}
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
submodules: true
4444
path: datafusion-c-${{ env.VERSION }}
@@ -149,7 +149,7 @@ jobs:
149149
# target: ubuntu-jammy-arm64
150150
# test-docker-image: arm64v8/ubuntu:jammy
151151
steps:
152-
- uses: actions/checkout@v5
152+
- uses: actions/checkout@v6
153153
with:
154154
submodules: true
155155
- name: Install dependencies

0 commit comments

Comments
 (0)