Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update actions/checkout action to v4 #94

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get the version from the tag.
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- inspect
- github_release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install twine.
run: pip install twine
- name: Set the version number.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install package.
run: pip install -e .
- name: Install test dependencies.
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install package.
run: pip install .
- name: Build the test site.
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install the linter (flake8).
run: pip install flake8
- name: Run the linter.
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install package.
run: pip install .
- name: Install mypy.
Expand Down