mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-13 03:24:39 +00:00
Add an explicit top-level permissions block to the GitHub Actions workflows that were relying on the default token permissions. Each workflow now defaults to contents: read, with additional scopes granted only where a job needs them: * nightly-trivy-scan keeps security-events: write at the job level to upload SARIF results, plus contents: read for checkout. * stale-issues gets issues: write and pull-requests: write for the actions/stale action to label and close stale items. Setting least-privilege permissions reduces the blast radius if a workflow or one of its dependencies is compromised, and satisfies the CLOMonitor token_permissions check. Signed-off-by: Shubham Pampattiwar <spampatt@redhat.com>
41 lines
933 B
YAML
41 lines
933 B
YAML
name: build Velero containers on Dockerfile change
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
- 'release-**'
|
|
paths:
|
|
- 'Dockerfile'
|
|
- 'Dockerfile-Windows'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
name: Checkout
|
|
|
|
- name: Set up QEMU
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v4
|
|
with:
|
|
platforms: all
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v4
|
|
with:
|
|
version: latest
|
|
|
|
# Although this action also calls docker-push.sh, it is not triggered
|
|
# by push, so BRANCH and TAG are empty by default. docker-push.sh will
|
|
# only build Velero image without pushing.
|
|
- name: Make Velero container without pushing to registry.
|
|
if: github.repository == 'velero-io/velero'
|
|
run: |
|
|
./hack/docker-push.sh |