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

Bump actions/checkout from 3 to 4 #82

Closed
Closed
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out src from Git
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Switch to using Python 3.10 by default
Expand All @@ -33,7 +33,7 @@ jobs:
--user
tox
- name: Check out src from Git
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Build dists
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Check out src from Git
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:

steps:
- name: Check out src from Git
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
jobs: ${{ toJSON(needs) }}

- name: Check out src from Git
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Notify repository owners about lint change affecting them
uses: sourcegraph/[email protected]
Expand Down
Loading