Skip to content
Open
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/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/poetry-setup
with:
python-version: "3.9"
Expand All @@ -34,7 +34,7 @@ jobs:
experimental: [ false ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/poetry-setup
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -46,7 +46,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/poetry-setup
with:
python-version: "3.9"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Use of release drafter action for adding semantic labels based on
# either title, body or source branch name
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
needs: [ triage ]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: update release notes if already merged
id: update-release-notes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install & configure poetry
uses: ./.github/actions/poetry-setup
Expand Down