diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index f9665009..4a0a33fc 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -293,7 +293,7 @@ jobs: - name: Publish package to TestPyPI if: inputs.test && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.5 + uses: pypa/gh-action-pypi-publish@v1.8.6 with: user: __token__ password: ${{ secrets.PyPI_token }} @@ -301,7 +301,7 @@ jobs: - name: Publish package to PyPI if: ( ! inputs.test ) && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.8.5 + uses: pypa/gh-action-pypi-publish@v1.8.6 with: user: __token__ password: ${{ secrets.PyPI_token }} diff --git a/.github/workflows/ci_check_pyproject_dependencies.yml b/.github/workflows/ci_check_pyproject_dependencies.yml index 087fe214..47ce4b1f 100644 --- a/.github/workflows/ci_check_pyproject_dependencies.yml +++ b/.github/workflows/ci_check_pyproject_dependencies.yml @@ -124,7 +124,7 @@ jobs: - name: Fetch PR body if: env.UPDATE_DEPS == 'true' id: pr_body - uses: chuhlomin/render-template@v1.6 + uses: chuhlomin/render-template@v1.7 with: template: ${{ env.PR_BODY_FILE }} diff --git a/.github/workflows/ci_update_dependencies.yml b/.github/workflows/ci_update_dependencies.yml index 400f6abc..09daffaf 100644 --- a/.github/workflows/ci_update_dependencies.yml +++ b/.github/workflows/ci_update_dependencies.yml @@ -142,7 +142,7 @@ jobs: - name: Fetch PR body id: pr_body - uses: chuhlomin/render-template@v1.6 + uses: chuhlomin/render-template@v1.7 with: template: ${{ env.PR_BODY_FILE }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index de864f33..208d9700 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,12 +49,12 @@ repos: # The project's documentation can be found at: # https://mypy.readthedocs.io/en/stable/index.html - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.2.0 + rev: v1.3.0 hooks: - id: mypy - repo: https://github.com/SINTEF/ci-cd - rev: v2.3.1 + rev: v2.4.0 hooks: - id: docs-api-reference args: diff --git a/pyproject.toml b/pyproject.toml index 9257c930..d1c5a29d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,8 @@ requires-python = "~=3.7" dynamic = ["version", "description"] dependencies = [ - "invoke ~=2.0", - "tomlkit ~=0.11.7", + "invoke ~=2.1", + "tomlkit ~=0.11.8", ] [project.optional-dependencies]