diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index 5fa3f214..0770baa7 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -13,7 +13,7 @@ on: jobs: automerge: - uses: fizyk/actions-reuse/.github/workflows/shared-automerge.yml@v3.1.0 + uses: fizyk/actions-reuse/.github/workflows/shared-automerge.yml@v3.1.1 secrets: app_id: ${{ secrets.MERGE_APP_ID }} private_key: ${{ secrets.MERGE_APP_PRIVATE_KEY }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b7e4489..3d83124b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,4 +8,4 @@ on: jobs: build: - uses: fizyk/actions-reuse/.github/workflows/shared-pypi.yml@v3.1.0 + uses: fizyk/actions-reuse/.github/workflows/shared-pypi.yml@v3.1.1 diff --git a/.github/workflows/dockerised-postgres.yml b/.github/workflows/dockerised-postgres.yml index 6abcbf12..15da3c27 100644 --- a/.github/workflows/dockerised-postgres.yml +++ b/.github/workflows/dockerised-postgres.yml @@ -50,7 +50,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run test noproc fixture on docker - uses: fizyk/actions-reuse/.github/actions/pipenv@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv@v3.1.1 with: python-version: ${{ matrix.python-version }} 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 diff --git a/.github/workflows/oldest-postgres.yml b/.github/workflows/oldest-postgres.yml index c2bbed1a..16805038 100644 --- a/.github/workflows/oldest-postgres.yml +++ b/.github/workflows/oldest-postgres.yml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Pipenv on python ${{ matrix.python-version }} - uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v3.1.1 with: python-version: ${{ matrix.python-version }} cache: false @@ -54,15 +54,15 @@ jobs: if: ${{ contains(inputs.python-versions, 'pypy') }} run: sudo apt install libpq5 - name: Install oldest supported versions - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.1 with: command: pip install -r oldest/requirements.rq - name: Run tests without xdist - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.1 with: command: py.test -svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml - name: Run xdist test - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.1 with: command: py.test -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 - uses: actions/upload-artifact@v4 diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index d9aeed82..dc8dc37b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -6,4 +6,4 @@ on: jobs: pr-check: - uses: fizyk/actions-reuse/.github/workflows/shared-pr-check.yml@v3.1.0 + uses: fizyk/actions-reuse/.github/workflows/shared-pr-check.yml@v3.1.1 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 3e674f39..280b62d5 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -9,4 +9,4 @@ on: jobs: pre-commit: - uses: fizyk/actions-reuse/.github/workflows/shared-pre-commit.yml@v3.1.0 + uses: fizyk/actions-reuse/.github/workflows/shared-pre-commit.yml@v3.1.1 diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 0d9319d3..2bba6725 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -5,7 +5,7 @@ on: - v* jobs: build-n-publish: - uses: fizyk/actions-reuse/.github/workflows/shared-pypi.yml@v3.1.0 + uses: fizyk/actions-reuse/.github/workflows/shared-pypi.yml@v3.1.1 with: publish: true secrets: diff --git a/.github/workflows/single-postgres.yml b/.github/workflows/single-postgres.yml index 645ef7e8..488b5cd8 100644 --- a/.github/workflows/single-postgres.yml +++ b/.github/workflows/single-postgres.yml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Pipenv on python ${{ matrix.python-version }} - uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v3.1.1 with: python-version: ${{ matrix.python-version }} - uses: ankane/setup-postgres@v1 @@ -53,11 +53,11 @@ jobs: if: ${{ contains(inputs.python-versions, 'pypy') }} run: sudo apt install libpq5 - name: Run test - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.1 with: command: py.test -svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml - name: Run xdist test - uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.0 + uses: fizyk/actions-reuse/.github/actions/pipenv-run@v3.1.1 with: command: py.test -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 - uses: actions/upload-artifact@v4