Harden workflows by defining only strictly needed permissions for all of them (#174)
* Define only needed write permissions
This commit is contained in:
parent
64c1d925a3
commit
7c9408ec44
|
@ -1,10 +1,13 @@
|
||||||
name: Build
|
name: Build
|
||||||
on:
|
on:
|
||||||
# Trigger the workflow on push or pull request,
|
# Trigger the workflow on push,
|
||||||
# but only for the master branch
|
# but only for the master branch
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Patch building
|
name: Patch building
|
||||||
|
@ -23,6 +26,8 @@ jobs:
|
||||||
name: Patch publishing
|
name: Patch publishing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download a single artifact
|
- name: Download a single artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
|
|
@ -3,6 +3,8 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: master
|
branches: master
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Patch building
|
name: Patch building
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
name: Test
|
name: Test
|
||||||
on:
|
on:
|
||||||
# Trigger the workflow on push or pull request,
|
# Trigger the workflow on push,
|
||||||
# but only for the master branch
|
# but only for the master branch
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Testing
|
name: Testing
|
||||||
|
@ -26,12 +29,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: test-report
|
name: test-report
|
||||||
path: out/test.log
|
path: out/test.log
|
||||||
- name: Create Issue for Test failure
|
|
||||||
if: failure()
|
issue_creation:
|
||||||
|
name: Create issue on failure
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
needs: test
|
||||||
|
if: failure()
|
||||||
|
steps:
|
||||||
|
- name: Download a single artifact
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: test-report
|
||||||
|
- name: Create the issue
|
||||||
uses: peter-evans/create-issue-from-file@v4
|
uses: peter-evans/create-issue-from-file@v4
|
||||||
with:
|
with:
|
||||||
title: Test failure
|
title: Test failure
|
||||||
content-filepath: out/test.log
|
content-filepath: test.log
|
||||||
labels: |
|
labels: |
|
||||||
report
|
report
|
||||||
automated issue
|
automated issue
|
||||||
|
|
Loading…
Reference in New Issue