From f16ee95d9d5052e8982595bca7d83e53c6bee1b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 06:02:25 +0000 Subject: [PATCH] build(deps): bump fizyk/actions-reuse from 4.4.4 to 4.4.7 Bumps [fizyk/actions-reuse](https://github.com/fizyk/actions-reuse) from 4.4.4 to 4.4.7. - [Changelog](https://github.com/fizyk/actions-reuse/blob/main/Changelog.rst) - [Commits](https://github.com/fizyk/actions-reuse/compare/v4.4.4...v4.4.7) --- updated-dependencies: - dependency-name: fizyk/actions-reuse dependency-version: 4.4.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/single-postgres-windows.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/single-postgres-windows.yml b/.github/workflows/single-postgres-windows.yml index 8e7db90c..9e97bea9 100644 --- a/.github/workflows/single-postgres-windows.yml +++ b/.github/workflows/single-postgres-windows.yml @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Set up Pipenv on python ${{ matrix.python-version }} - uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.4 + uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.7 with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -58,25 +58,25 @@ jobs: } - name: Run test id: run_serial_tests - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.4 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.7 with: command: python -m coverage run --data-file=.coverage.serial -m pytest -svv -p no:xdist --postgresql-exec="${{ env.POSTGRESQL_EXEC }}" -k "not docker" --basetemp="${{ runner.temp }}/pytest-basetemp" env: '{"COVERAGE_PROCESS_START": ".coveragerc", "COVERAGE_FILE": ".coverage.serial"}' - name: Combine and export serial coverage if: ${{ always() && (steps.run_serial_tests.conclusion == 'success' || steps.run_serial_tests.conclusion == 'failure') }} - uses: fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.4 + uses: fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.7 with: data-file: .coverage.serial output-file: coverage-serial.xml - name: Run xdist test id: run_xdist_tests - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.4 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.4.7 with: command: python -m coverage run --data-file=.coverage.xdist -m pytest -n auto --dist loadgroup --max-worker-restart 0 --postgresql-exec="${{ env.POSTGRESQL_EXEC }}" -k "not docker" --basetemp="${{ runner.temp }}/pytest-basetemp" env: '{"COVERAGE_PROCESS_START": ".coveragerc", "COVERAGE_FILE": ".coverage.xdist"}' - name: Combine and export xdist coverage if: ${{ always() && (steps.run_xdist_tests.conclusion == 'success' || steps.run_xdist_tests.conclusion == 'failure') }} - uses: fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.4 + uses: fizyk/actions-reuse/.github/actions/coverage-combine-export@v4.4.7 with: data-file: .coverage.xdist output-file: coverage-xdist.xml