diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index e2ebd4ba..628d317f 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -252,7 +252,7 @@ jobs: - name: Publish package to TestPyPI if: inputs.test && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.7.1 + uses: pypa/gh-action-pypi-publish@v1.8.5 with: user: __token__ password: ${{ secrets.PyPI_token }} @@ -260,7 +260,7 @@ jobs: - name: Publish package to PyPI if: ( ! inputs.test ) && inputs.publish_on_pypi && inputs.python_package - uses: pypa/gh-action-pypi-publish@v1.7.1 + uses: pypa/gh-action-pypi-publish@v1.8.5 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 1d3d0e21..a5afc702 100644 --- a/.github/workflows/ci_check_pyproject_dependencies.yml +++ b/.github/workflows/ci_check_pyproject_dependencies.yml @@ -135,7 +135,7 @@ jobs: - name: Create PR if: env.UPDATE_DEPS == 'true' id: cpr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v5 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} committer: "${{ inputs.git_username }} <${{ inputs.git_email }}>" diff --git a/.github/workflows/ci_update_dependencies.yml b/.github/workflows/ci_update_dependencies.yml index 9b7a16c9..400f6abc 100644 --- a/.github/workflows/ci_update_dependencies.yml +++ b/.github/workflows/ci_update_dependencies.yml @@ -152,7 +152,7 @@ jobs: - name: Create PR id: cpr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v5 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} committer: "${{ inputs.git_username }} <${{ inputs.git_email }}>" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ea25614e..822e5acf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: # Black is a code style and formatter # It works on files in-place - repo: https://github.com/ambv/black - rev: 23.1.0 + rev: 23.3.0 hooks: - id: black @@ -54,7 +54,7 @@ repos: - id: mypy - repo: https://github.com/SINTEF/ci-cd - rev: v2.2.0 + rev: v2.3.0 hooks: - id: docs-api-reference args: diff --git a/pyproject.toml b/pyproject.toml index 89b8182d..06907be9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dynamic = ["version", "description"] dependencies = [ "invoke ~=2.0", - "tomlkit ~=0.11.6", + "tomlkit ~=0.11.7", ] [project.optional-dependencies]