chore(deps): update dependency cachetools to v7 #1691
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Python build | |
| # | |
| # Global variables from project settings: | |
| # PYTHON_VERSION: The minimum Python version to support. | |
| # PYTHON_VERSIONS: The Python versions to test. Usually a list of newer versions we support. | |
| # | |
| # yamllint disable-line rule:truthy | |
| on: pull_request | |
| # yamllint enable rule:comments | |
| jobs: | |
| default: | |
| # yamllint disable-line rule:line-length | |
| uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/python_python_callable.yml@d55afdff37918b3f42bc21607b741113f5e3fd4f # 1.26.29 | |
| secrets: inherit | |
| with: | |
| # type: string | |
| # required: true | |
| # description: The minimum Python version to support | |
| python-version: ${{ vars.PYTHON_VERSION }} | |
| # type: string | |
| # required: true | |
| # description: The Python versions to test. Usually a list of newer versions we support. | |
| python-versions: ${{ vars.PYTHON_VERSIONS }} | |
| # type: string | |
| # required: false | |
| # description: "Name of the image. Usually it is sensible to set this to the repository name." | |
| # default: "" | |
| docker-image-name: ${{ github.event.repository.name }} | |
| # type: string | |
| # required: false | |
| # description: "Platforms to build the docker image for" | |
| # default: "linux/amd64,linux/arm64" | |
| docker-platforms: "linux/amd64,linux/arm64" | |
| # type: boolean | |
| # required: false | |
| # description: "Enable Docker image provenance" | |
| # default: true | |
| docker-provenance: false |