diff --git a/.github/actions/build-distribution/action.yml b/.github/actions/build-distribution/action.yml index bc0d55c29..41d3dea01 100644 --- a/.github/actions/build-distribution/action.yml +++ b/.github/actions/build-distribution/action.yml @@ -6,7 +6,7 @@ description: Run the build distribution runs: using: "composite" steps: - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.10" diff --git a/.github/actions/packages/action.yml b/.github/actions/packages/action.yml index 871f49c32..e2daa0882 100644 --- a/.github/actions/packages/action.yml +++ b/.github/actions/packages/action.yml @@ -6,7 +6,7 @@ description: Run the packages runs: using: "composite" steps: - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.10" - name: Override the version if there is no tag release. diff --git a/.github/workflows/matrix-command.yml b/.github/workflows/matrix-command.yml index f2c32658f..9692b8cea 100644 --- a/.github/workflows/matrix-command.yml +++ b/.github/workflows/matrix-command.yml @@ -21,7 +21,7 @@ jobs: pull-requests: write steps: - name: Is comment allowed? - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const actorPermission = (await github.rest.repos.getCollaboratorPermissionLevel({ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d7617267..d111c6c1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,12 +63,12 @@ jobs: path: dist - name: Upload pypi.org if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 + uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 with: repository-url: https://upload.pypi.org/legacy/ - name: Upload test.pypi.org if: ${{ ! startsWith(github.ref, 'refs/tags') }} - uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 + uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 with: repository-url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e3daf093..af7403d11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -145,7 +145,7 @@ jobs: - uses: actions/checkout@v5 with: ref: ${{ inputs.ref || github.ref }} - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.version }} cache: pip @@ -203,7 +203,7 @@ jobs: with: ref: ${{ inputs.ref || github.ref }} - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: # Use latest Python, so it understands all syntax. python-version: 3.11