Skip to content

Commit

Permalink
Merge pull request #79 from codectl/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/checkout-4

build(deps): bump actions/checkout from 3 to 4
  • Loading branch information
codectl authored Mar 19, 2024
2 parents e317098 + 8c000a9 commit c9094db
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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 @@ -35,7 +35,7 @@ jobs:

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 @@ -47,7 +47,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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install & configure poetry
uses: ./.github/actions/poetry-setup
with:
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 @@ -12,7 +12,7 @@ jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

0 comments on commit c9094db

Please sign in to comment.