Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # 0.19.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ matrix.os }}
repository-cache: true

- name: Install clang-format (Linux)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # 0.19.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ matrix.os }}-py${{ matrix.python-version }}
repository-cache: true

- name: Set Python Version
Expand Down Expand Up @@ -108,7 +108,7 @@
path: wheelhouse/

- name: Publish package to testpypi
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

Check notice on line 111 in .github/workflows/prerelease.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

use-trusted-publishing

prerelease.yml:111: prefer trusted publishing for authentication: this step
with:
repository-url: https://test.pypi.org/legacy/
user: __token__
Expand All @@ -118,7 +118,7 @@


- name: Publish package to pypi
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

Check notice on line 121 in .github/workflows/prerelease.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

use-trusted-publishing

prerelease.yml:121: prefer trusted publishing for authentication: this step
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # 0.19.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ matrix.os }}-py${{ matrix.python-version }}
repository-cache: true

- name: Set Python Version
Expand Down Expand Up @@ -107,7 +107,7 @@
path: wheelhouse/

- name: Publish package to testpypi
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

Check notice on line 110 in .github/workflows/stable-release-workflow.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

use-trusted-publishing

stable-release-workflow.yml:110: prefer trusted publishing for authentication: this step
with:
repository-url: https://test.pypi.org/legacy/
user: __token__
Expand All @@ -116,7 +116,7 @@
verbose: true

- name: Publish package to pypi
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2

Check notice on line 119 in .github/workflows/stable-release-workflow.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

use-trusted-publishing

stable-release-workflow.yml:119: prefer trusted publishing for authentication: this step
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
Expand Down
Loading