Skip to content

Commit

Permalink
Merge pull request #722 from fizyk/dependabot/github_actions/fizyk/ac…
Browse files Browse the repository at this point in the history
…tions-reuse-2.4.0

Bump fizyk/actions-reuse from 2.3.2 to 2.4.0
  • Loading branch information
fizyk authored Oct 13, 2023
2 parents 4a351b4 + f1c73f1 commit 55fbea3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
automerge:
uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v2.4.0
secrets:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ on:

jobs:
build:
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.4.0
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
basic_linters:
uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v2.4.0
with:
pylint: true
black: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.3.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.0
with:
python-version: "3.11"
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x"
towncrier:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.3.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.0
with:
python-version: "3.11"
command: towncrier check --compare-with origin/main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- v*
jobs:
build-n-publish:
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.4.0
with:
publish: true
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.3.2
- uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.0
with:
python-version: "3.11"
command: "sphinx-build -b html docs/source build/html"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ on:

jobs:
tests:
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.4.0
with:
python-versions: '["3.8", "3.9", "3.10", "3.11"]'
pytest_opts: '-k "not mysql and not postgresql"'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
postgresql:
needs: tests
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.4.0
with:
python-versions: '["3.8", "3.9", "3.10", "3.11"]'
pytest_opts: "-k postgresql"
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
mysql:
needs: tests
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.3.2
uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.4.0
with:
python-versions: '["3.8", "3.9", "3.10", "3.11"]'
pytest_opts: "-k mysql"
Expand Down

0 comments on commit 55fbea3

Please sign in to comment.