diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml index 4d3b4b6c..23e35ede 100644 --- a/.github/workflows/automerge.yml +++ b/.github/workflows/automerge.yml @@ -13,7 +13,7 @@ on: jobs: automerge: - uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v2.5.0 + uses: fizyk/actions-reuse/.github/workflows/automerge-shared.yml@v2.6.0 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 4a534a8c..00fd8b34 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,4 +8,4 @@ on: jobs: build: - uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.5.0 + uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.6.0 diff --git a/.github/workflows/dockerised-postgres.yml b/.github/workflows/dockerised-postgres.yml index e6b5baad..dac0dd2c 100644 --- a/.github/workflows/dockerised-postgres.yml +++ b/.github/workflows/dockerised-postgres.yml @@ -54,7 +54,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Run test noproc fixture on docker - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.5.0 + uses: fizyk/actions-reuse/.github/actions/pipenv@v2.6.0 with: python-version: ${{ matrix.python-version }} command: pytest -n 0 -k docker --postgresql-host=localhost --postgresql-port 5433 --postgresql-password=postgres --cov-report=xml:coverage-docker.xml diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 7cd518e9..8e5eb6a1 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -9,6 +9,6 @@ on: jobs: lint: - uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v2.5.0 + uses: fizyk/actions-reuse/.github/workflows/linters-python.yml@v2.6.0 with: pre-commit: true diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 0743ca1c..bc68c61b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 - - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.5.0 + - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.6.0 with: python-version: "3.13" command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x" @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest if: ${{ !contains(fromJSON('["dependabot[bot]","pre-commit-ci[bot]"]'), github.actor) }} steps: - - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.5.0 + - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.6.0 with: python-version: "3.13" command: towncrier check --compare-with origin/main diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index c000eddf..753b9dc8 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/pypi.yml@v2.5.0 + uses: fizyk/actions-reuse/.github/workflows/pypi.yml@v2.6.0 with: publish: true secrets: diff --git a/.github/workflows/single-postgres.yml b/.github/workflows/single-postgres.yml index 9aae440f..e68e0e04 100644 --- a/.github/workflows/single-postgres.yml +++ b/.github/workflows/single-postgres.yml @@ -53,12 +53,12 @@ jobs: if: ${{ contains(inputs.python-versions, 'pypy') }} run: sudo apt install libpq5 - name: Run test - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.5.0 + uses: fizyk/actions-reuse/.github/actions/pipenv@v2.6.0 with: python-version: ${{ matrix.python-version }} command: py.test -svv -n 0 --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@v2.5.0 + uses: fizyk/actions-reuse/.github/actions/pipenv@v2.6.0 with: python-version: ${{ matrix.python-version }} command: py.test -n 1 --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml:coverage-xdist.xml