Skip to content

Commit f6e5aa6

Browse files
authored
Merge pull request #352 from dandi/dependabot/github_actions/actions/checkout-6
[gh-actions](deps): Bump actions/checkout from 5 to 6
2 parents 29e91e7 + 5cf11a4 commit f6e5aa6

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Set up environment
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with: # no need for the history
1515
fetch-depth: 1
1616
- name: Set up Python

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
auto-version: ${{ steps.auto-version.outputs.version }}
1919
steps:
2020
- name: Checkout source
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
# A full checkout is required so that auto will have access to tag
2424
# information.
@@ -49,7 +49,7 @@ jobs:
4949
git config --global user.name "DANDI Bot"
5050
5151
- name: Checkout source
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
fetch-depth: 0
5555
path: dandischema
@@ -75,7 +75,7 @@ jobs:
7575
working-directory: dandischema
7676

7777
- name: Checkout dandi/schema
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v6
7979
with:
8080
repository: dandi/schema
8181
path: schema

.github/workflows/test-dandi-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: echo DANDI_DEVEL=1 >> "$GITHUB_ENV"
8080

8181
- name: Check out dandischema
82-
uses: actions/checkout@v5
82+
uses: actions/checkout@v6
8383
with:
8484
# Fetch all commits so that versioningit will return something
8585
# compatible with semantic-version

.github/workflows/test-nonetwork.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- '3.12'
2626
steps:
2727
- name: Set up environment
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
# Fetch all commits so that versioningit will return something
3131
# compatible with semantic-version

.github/workflows/test-schema.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: contains(github.event.pull_request.labels.*.name, 'release')
1212
steps:
1313
- name: Checkout this repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0 # Need history for `git describe`
1717
path: dandischema
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: dandischema
2727

2828
- name: Checkout dandi/schema
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
repository: dandi/schema
3232
path: schema

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
instance_name: EMBER-DANDI
3838
steps:
3939
- name: Set up environment
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
with:
4242
# Fetch all commits so that versioningit will return something
4343
# compatible with semantic-version

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out repository
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515

0 commit comments

Comments
 (0)