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/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Create Homebrew tap app token
id: create_tap_token
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1
with:
client-id: ${{ env.HOMEBREW_TAP_APP_CLIENT_ID }}
private-key: ${{ env.HOMEBREW_TAP_APP_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion tests/vstack/test_publish_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_homebrew_job_verifies_sdist_and_dispatches_update(self) -> None:
app_token_step = next(step for step in steps if step.get("id") == "create_tap_token")
assert (
app_token_step["uses"]
== "actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349"
== "actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1"
)
assert app_token_step["with"]["client-id"] == "${{ env.HOMEBREW_TAP_APP_CLIENT_ID }}"
assert app_token_step["with"]["private-key"] == "${{ env.HOMEBREW_TAP_APP_PRIVATE_KEY }}"
Expand Down