diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe1c559cf..aa05b14ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: fetch-depth: 0 - name: Create wheels - uses: pypa/cibuildwheel@v2.15.0 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS: ${{ matrix.archs }} @@ -88,7 +88,7 @@ jobs: platforms: arm64 - name: Create wheels - uses: pypa/cibuildwheel@v2.15.0 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS: ${{ matrix.archs }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 13ecd07be..af425ec09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ jobs: - name: Upload coverage # TODO: Configure code coverage monitoring if: false && matrix.python-version == env.STABLE_PYTHON_VERSION && matrix.os == 'ubuntu-latest' - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 88eb34759..f2a9f2db7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ default_install_hook_types: repos: # Generic hooks that apply to a lot of files - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-added-large-files - id: check-case-conflict @@ -38,7 +38,7 @@ repos: stages: [pre-push] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.289 + rev: v0.1.1 hooks: - id: ruff # Exclude python files in pact/** and tests/**, except for the @@ -48,7 +48,7 @@ repos: stages: [pre-push] - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 23.10.0 hooks: - id: black # Exclude python files in pact/** and tests/**, except for the @@ -57,7 +57,7 @@ repos: stages: [pre-push] - repo: https://github.com/commitizen-tools/commitizen - rev: 3.8.2 + rev: v3.12.0 hooks: - id: commitizen stages: [commit-msg]