Skip to content
Merged
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Set up environment
uses: actions/checkout@v5
uses: actions/checkout@v6
with: # no need for the history
fetch-depth: 1
- name: Set up Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
auto-version: ${{ steps.auto-version.outputs.version }}
steps:
- name: Checkout source
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# A full checkout is required so that auto will have access to tag
# information.
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
git config --global user.name "DANDI Bot"

- name: Checkout source
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
path: dandischema
Expand All @@ -75,7 +75,7 @@ jobs:
working-directory: dandischema

- name: Checkout dandi/schema
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dandi/schema
path: schema
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-dandi-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: echo DANDI_DEVEL=1 >> "$GITHUB_ENV"

- name: Check out dandischema
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all commits so that versioningit will return something
# compatible with semantic-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-nonetwork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- '3.12'
steps:
- name: Set up environment
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all commits so that versioningit will return something
# compatible with semantic-version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'release')
steps:
- name: Checkout this repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Need history for `git describe`
path: dandischema
Expand All @@ -26,7 +26,7 @@ jobs:
working-directory: dandischema

- name: Checkout dandi/schema
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: dandi/schema
path: schema
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
instance_name: EMBER-DANDI
steps:
- name: Set up environment
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all commits so that versioningit will return something
# compatible with semantic-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
Loading