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

dev: update github workflow deps to latest versions #33

Merged
merged 1 commit into from
Mar 6, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
python: ['3.8']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

# Install dependencies.
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Python cache with dependencies.
id: python-cache
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
python: ['3.8']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

# Install dependencies.
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Python cache with dependencies.
id: python-cache
with:
Expand Down Expand Up @@ -48,14 +48,14 @@ jobs:
- os: windows-latest
windows_nose_args: --traverse-namespace ./tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

# Install dependencies.
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Python cache with dependencies.
id: python-cache
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
twine check dist/*
- name: Upload sdist and wheel.
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pyodk--on-${{ matrix.os }}--py${{ matrix.python }}
path: ${{ github.workspace }}/dist/pyodk*