Skip to content

Commit f06d7af

Browse files
committed
fix: update sha256 checksum for ds and ds@0.13.0 casks
1 parent 26f565c commit f06d7af

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/pr-validation.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,21 @@ jobs:
6262
ABS_TAP_PATH="$(brew --repository)/Library/Taps/${TAP_PATH}"
6363
mkdir -p "$ABS_TAP_PATH"
6464
cp -r . "$ABS_TAP_PATH"
65+
66+
- name: Generate GitHub App token
67+
id: app-token
68+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
69+
with:
70+
app-id: ${{ vars.DOCKER_READ_APP_ID }}
71+
private-key: ${{ secrets.DOCKER_READ_APP_PRIVATE_KEY }}
72+
owner: docker
73+
repositories: |
74+
dash-releases
6575
6676
- name: Validate cask
6777
uses: ./validate-cask
6878
with:
6979
cask-path: ${{ env.CASK_PATH }}
7080
tap-path: ${{ env.TAP_PATH }}
81+
env:
82+
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

Casks/ds.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cask "ds" do
44
version "0.13.0"
5-
sha256 "d7d543ea64aaf15e8bfed812aab0a220c36777d42f6203f604e32d318f8ee99f"
5+
sha256 "68690e8ad755d22dc2983ca62c5bab47e11166eeb73d75e048645ba1e420d1d7"
66

77
url "https://github.com/docker/dash-releases/releases/download/v#{version}/ds-darwin-arm64.tar.gz",
88
using: GitHubPrivateRepositoryReleaseDownloadStrategy

Casks/ds@0.13.0.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cask "ds@0.13.0" do
44
version "0.13.0"
5-
sha256 "d7d543ea64aaf15e8bfed812aab0a220c36777d42f6203f604e32d318f8ee99f"
5+
sha256 "68690e8ad755d22dc2983ca62c5bab47e11166eeb73d75e048645ba1e420d1d7"
66

77
url "https://github.com/docker/dash-releases/releases/download/v#{version}/ds-darwin-arm64.tar.gz",
88
using: GitHubPrivateRepositoryReleaseDownloadStrategy

0 commit comments

Comments
 (0)