Skip to content

Commit

Permalink
Merge pull request #191 from dandi/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…checkout-4

[gh-actions](deps): Bump actions/checkout from 3 to 4
  • Loading branch information
yarikoptic authored Sep 11, 2023
2 parents fe96019 + 972187d commit 7bdc5b4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
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@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
with:
# A full checkout is required so that auto will have access to tag
# information.
Expand All @@ -44,7 +44,7 @@ jobs:
if: needs.release-check.outputs.auto-version != ''
steps:
- name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
path: dandischema
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
echo "SCHEMA_VERSION=$SCHEMA_VERSION" >> "$GITHUB_ENV"
- name: Checkout dandi/schema
uses: actions/checkout@v3
uses: actions/checkout@v4
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 @@ -80,7 +80,7 @@ jobs:
run: echo DANDI_DEVEL=1 >> "$GITHUB_ENV"

- name: Check out dandischema
uses: actions/checkout@v3
uses: actions/checkout@v4
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 @@ -26,7 +26,7 @@ jobs:
- '3.11'
steps:
- name: Set up environment
uses: actions/checkout@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
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 @@ -27,7 +27,7 @@ jobs:
- '3.11'
steps:
- name: Set up environment
uses: actions/checkout@v3
uses: actions/checkout@v4
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@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 7bdc5b4

Please sign in to comment.