Skip to content

Commit 0860478

Browse files
authored
Merge pull request #6201 from duckdb/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents a85b739 + e7202a7 commit 0860478

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/build-stable-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Install Python requirements
1717
run: pip3 install -r requirements.txt --break-system-packages
1818
- name: Setup Ruby
@@ -39,7 +39,7 @@ jobs:
3939
working-directory: single-file-document
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
- name: Setup Python
4444
run: |
4545
PYTHONUNBUFFERED=1

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.10'

.github/workflows/community_extension_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'duckdb/duckdb-web' }}
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
path: '.'
2121
token: ${{ secrets.GH_UPDATE_DOCS_TOKEN }}

.github/workflows/linkchecker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
if: github.ref == 'refs/heads/main' && github.repository == 'duckdb/duckdb-web'
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
markdown:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: errata-ai/vale-action@reviewdog
1515
with:
1616
files: '_posts/,docs/stable/'
@@ -25,7 +25,7 @@ jobs:
2525
python:
2626
runs-on: ubuntu-22.04
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- uses: psf/black@stable
3030
with:
3131
options: "--check --skip-string-normalization --verbose --diff --color"

.github/workflows/nightly-docs-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Copy stable to preview
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/stackoverflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository == 'duckdb/duckdb-web'
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setting up Python
1818
uses: actions/setup-python@v6

.github/workflows/update-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'duckdb/duckdb-web' }}
1212

1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
token: ${{ secrets.GH_UPDATE_DOCS_TOKEN }}
1717
- uses: actions/setup-python@v6
@@ -22,11 +22,11 @@ jobs:
2222
- run: pip install wheel pip -U --break-system-packages
2323
- run: pip install -r requirements.txt -U --break-system-packages
2424
- run: pip install duckdb --pre -U --break-system-packages # grab the latest duckdb python dev version
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
path: 'duckdb'
2828
repository: 'duckdb/duckdb'
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
path: 'duckdb-node'
3232
repository: 'duckdb/duckdb-node'

0 commit comments

Comments
 (0)