Skip to content

Commit c699ade

Browse files
build(deps): bump fizyk/actions-reuse from 4.1.1 to 4.2.1
Bumps [fizyk/actions-reuse](https://github.com/fizyk/actions-reuse) from 4.1.1 to 4.2.1. - [Changelog](https://github.com/fizyk/actions-reuse/blob/main/Changelog.rst) - [Commits](fizyk/actions-reuse@v4.1.1...v4.2.1) --- updated-dependencies: - dependency-name: fizyk/actions-reuse dependency-version: 4.2.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2d31cdd commit c699ade

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/dockerised-postgres.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v6
5252
- name: Run test noproc fixture on docker
53-
uses: fizyk/actions-reuse/.github/actions/pipenv@v4.1.1
53+
uses: fizyk/actions-reuse/.github/actions/pipenv@v4.2.1
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
command: pytest -n 0 --max-worker-restart 0 -k docker --postgresql-host=localhost --postgresql-port 5433 --postgresql-password=postgres --cov-report=xml:coverage-docker.xml

.github/workflows/oldest-postgres.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Set up Pipenv on python ${{ matrix.python-version }}
39-
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.1.1
39+
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.2.1
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
cache: false
@@ -55,15 +55,15 @@ jobs:
5555
if: ${{ contains(inputs.python-versions, 'pypy') }}
5656
run: sudo apt install libpq5
5757
- name: Install oldest supported versions
58-
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
58+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
5959
with:
6060
command: pip install -r oldest/requirements.txt
6161
- name: Run tests without xdist
62-
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
62+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
6363
with:
6464
command: pytest -c pyproject.oldest.toml -svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml
6565
- name: Run xdist test
66-
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
66+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
6767
with:
6868
command: pytest -n auto -c pyproject.oldest.toml --dist loadgroup --max-worker-restart 0 --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml:coverage-xdist.xml
6969
- uses: actions/upload-artifact@v6

.github/workflows/single-postgres.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Set up Pipenv on python ${{ matrix.python-version }}
39-
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.1.1
39+
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.2.1
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
allow-prereleases: true
@@ -54,11 +54,11 @@ jobs:
5454
if: ${{ contains(inputs.python-versions, 'pypy') }}
5555
run: sudo apt install libpq5
5656
- name: Run test
57-
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
57+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
5858
with:
5959
command: pytest -svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml
6060
- name: Run xdist test
61-
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
61+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
6262
with:
6363
command: pytest -n auto --dist loadgroup --max-worker-restart 0 --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml:coverage-xdist.xml
6464
- uses: actions/upload-artifact@v6

0 commit comments

Comments
 (0)