Skip to content

Commit eef588d

Browse files
committed
Sync changes from dart-musl
1 parent 126418d commit eef588d

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ jobs:
6363
runs-on: ubuntu-latest
6464

6565
permissions:
66-
id-token: write
66+
actions: write
6767
attestations: write
68+
id-token: write
6869

6970
container:
7071
image: docker.io/library/debian

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
build:
1010
permissions:
11+
actions: write
1112
attestations: write
1213
id-token: write
1314
uses: ./.github/workflows/build.yml

.github/workflows/schedule.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ jobs:
5959
needs: [latest]
6060
if: needs.latest.outputs.stable-cache-hit != 'true'
6161
permissions:
62-
id-token: write
62+
actions: write
6363
attestations: write
64+
id-token: write
6465
uses: ./.github/workflows/build.yml
6566
with:
6667
ref: ${{ needs.latest.outputs.stable-version }}
@@ -70,8 +71,9 @@ jobs:
7071
needs: [latest]
7172
if: needs.latest.outputs.beta-cache-hit != 'true' && needs.latest.outputs.beta-version != needs.latest.outputs.stable-version
7273
permissions:
73-
id-token: write
74+
actions: write
7475
attestations: write
76+
id-token: write
7577
uses: ./.github/workflows/build.yml
7678
with:
7779
ref: ${{ needs.latest.outputs.beta-version }}
@@ -81,8 +83,9 @@ jobs:
8183
needs: [latest]
8284
if: needs.latest.outputs.dev-cache-hit != 'true' && needs.latest.outputs.dev-version != needs.latest.outputs.beta-version && needs.latest.outputs.dev-version != needs.latest.outputs.stable-version
8385
permissions:
84-
id-token: write
86+
actions: write
8587
attestations: write
88+
id-token: write
8689
uses: ./.github/workflows/build.yml
8790
with:
8891
ref: ${{ needs.latest.outputs.dev-version }}
@@ -91,8 +94,9 @@ jobs:
9194
edge:
9295
needs: [latest]
9396
permissions:
94-
id-token: write
97+
actions: write
9598
attestations: write
99+
id-token: write
96100
uses: ./.github/workflows/build.yml
97101
with:
98102
ref: ${{ needs.latest.outputs.edge-version }}

0 commit comments

Comments
 (0)