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
7 changes: 6 additions & 1 deletion .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ on:
- '.github/workflows/container-build.yml'
workflow_dispatch:

permissions: read-all
# Explicit rather than `read-all`: every job here only checks out and builds.
# Naming the one scope it needs also removes the last scalar `permissions:`
# block, which is what let a text-matching sweep produce invalid YAML twice
# (fixed #64, reintroduced #68, re-fixed #69).
permissions:
contents: read

concurrency:
group: container-build-${{ github.ref }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ on:
branches: [main, master]
workflow_dispatch:

permissions: read-all
# Explicit rather than `read-all`: every job here only checks out and builds.
# Naming the one scope it needs also removes the last scalar `permissions:`
# block, which is what let a text-matching sweep produce invalid YAML twice
# (fixed #64, reintroduced #68, re-fixed #69).
permissions:
contents: read

concurrency:
group: e2e-${{ github.ref }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/install-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ on:
branches: [main]
workflow_dispatch:

permissions: read-all
# Explicit rather than `read-all`: every job here only checks out and builds.
# Naming the one scope it needs also removes the last scalar `permissions:`
# block, which is what let a text-matching sweep produce invalid YAML twice
# (fixed #64, reintroduced #68, re-fixed #69).
permissions:
contents: read

concurrency:
group: install-smoke-${{ github.ref }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ on:
- '.github/workflows/zig.yml'
workflow_dispatch:

permissions: read-all
# Explicit rather than `read-all`: every job here only checks out and builds.
# Naming the one scope it needs also removes the last scalar `permissions:`
# block, which is what let a text-matching sweep produce invalid YAML twice
# (fixed #64, reintroduced #68, re-fixed #69).
permissions:
contents: read

concurrency:
group: zig-${{ github.ref }}
Expand Down
Loading