Skip to content

Commit e41018c

Browse files
authored
Production Release (#826)
Sprint 55 issues include: Code Scanning Alert: Workflow Does Not Contain Permissions #815 Code Scanning Alert: Workflow Does Not Contain Permissions #818 Code Scanning Alert: Workflow Does Not Contain Permissions #817 Code Scanning Alert: Workflow Does not Contain Permissions #820 Code Scanning Alert: Workflow Does Not Contain Permissions #816 Code Scanning Alert: Workflow Does not Contain Permissions #819
1 parent d3eef1a commit e41018c

File tree

6 files changed

+17
-0
lines changed

6 files changed

+17
-0
lines changed

.github/workflows/backend-tests.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
test:
1010

1111
runs-on: ubuntu-latest
12+
13+
permissions:
14+
contents: read
15+
pull-requests: read
1216

1317
strategy:
1418
matrix:

.github/workflows/deploy-dev.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ jobs:
1313
with:
1414
environment: dev
1515
secrets: inherit
16+
permissions:
17+
contents: read

.github/workflows/deploy-prod.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ jobs:
1313
with:
1414
environment: prod
1515
secrets: inherit
16+
permissions:
17+
contents: read

.github/workflows/deploy-staging.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ jobs:
1313
with:
1414
environment: staging
1515
secrets: inherit
16+
permissions:
17+
contents: read

.github/workflows/deploy.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
1315
environment: ${{ inputs.environment }}
1416
steps:
1517
- uses: actions/checkout@v3

.github/workflows/frontend-tests.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
defaults:
1313
run:
1414
working-directory: 'training-front-end'
15+
16+
permissions:
17+
contents: read
18+
pull-requests: read
19+
1520
steps:
1621
- name: Checkout code
1722
uses: actions/checkout@v3

0 commit comments

Comments
 (0)