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

Upgrade to GitHub Actions checkout@v4 #76

Merged
merged 2 commits into from
Jan 2, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and Check Package
uses: hynek/[email protected]

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
tox_env: "pypy3-pytest7"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download Package
uses: actions/download-artifact@v3
Expand All @@ -59,7 +59,7 @@ jobs:
path: dist

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
tox_env: "py37-pytest6"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download Package
uses: actions/download-artifact@v3
Expand All @@ -101,7 +101,7 @@ jobs:
path: dist

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.7"

Expand Down