Skip to content

Commit

Permalink
Updated workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Oct 27, 2023
1 parent 44f170e commit 8274430
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
test:
runs-on: ubuntu-20.04
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: "3.10"
- name: Install Coookiecutter
Expand Down
4 changes: 2 additions & 2 deletions {{ cookiecutter.package_name }}/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
build-and-publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Verify versioning
Expand Down
4 changes: 2 additions & 2 deletions {{ cookiecutter.package_name }}/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
runs-on: {{ '${{ matrix.os }}' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: {{ '${{ matrix.python-version }}' }}
- name: Install dependencies
Expand Down

0 comments on commit 8274430

Please sign in to comment.