Skip to content

Commit

Permalink
Bump actions to workaround GHA deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Oct 24, 2022
1 parent 608d45d commit 1a8479c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
name: Packaging
steps:
- name: Checkout repository
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.x'

- name: Install tools
run: python -m pip install build twine
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-poetry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Style checks
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Poetry
uses: matrix-org/setup-python-poetry@v1
Expand All @@ -41,7 +41,7 @@ jobs:
name: Typechecking
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Poetry
uses: matrix-org/setup-python-poetry@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"

- uses: "actions/setup-python@v2"
- uses: "actions/setup-python@v4"
with:
python-version: "3.x"

Expand Down

0 comments on commit 1a8479c

Please sign in to comment.