Skip to content

Commit

Permalink
Merge pull request #25 from DSD-DBS/update-actions
Browse files Browse the repository at this point in the history
ci: Update git actions
  • Loading branch information
ewuerger authored Nov 8, 2022
2 parents b54efba + b0a30dd commit ffd617e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
- os: windows-latest
python_version: "3.9"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{matrix.python_version}}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python_version}}
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm -v
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{runner.os}}-pip-${{hashFiles('setup.cfg')}}
Expand All @@ -53,9 +53,9 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
Expand All @@ -69,7 +69,7 @@ jobs:
run: |-
python -m twine check dist/*
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: "dist/*"
Expand Down

0 comments on commit ffd617e

Please sign in to comment.