mirror of https://github.com/docker/buildx.git
Merge pull request #2765 from crazy-max/ci-fix-content-read
ci: keep contents read permissions in jobs
This commit is contained in:
commit
14b31d8b77
|
@ -227,6 +227,8 @@ jobs:
|
||||||
govulncheck:
|
govulncheck:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
permissions:
|
permissions:
|
||||||
|
# same as global permission
|
||||||
|
contents: read
|
||||||
# required to write sarif report
|
# required to write sarif report
|
||||||
security-events: write
|
security-events: write
|
||||||
steps:
|
steps:
|
||||||
|
@ -372,6 +374,8 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'docker/buildx' }}
|
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'docker/buildx' }}
|
||||||
permissions:
|
permissions:
|
||||||
|
# same as global permission
|
||||||
|
contents: read
|
||||||
# required to write sarif report
|
# required to write sarif report
|
||||||
security-events: write
|
security-events: write
|
||||||
needs:
|
needs:
|
||||||
|
|
|
@ -23,6 +23,7 @@ jobs:
|
||||||
codeql:
|
codeql:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
permissions:
|
permissions:
|
||||||
|
contents: read
|
||||||
actions: read
|
actions: read
|
||||||
security-events: write
|
security-events: write
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -20,6 +20,9 @@ jobs:
|
||||||
labeler:
|
labeler:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
# same as global permission
|
||||||
|
contents: read
|
||||||
|
# required for writing labels
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
|
Loading…
Reference in New Issue