Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
# Declare default permissions as read only
permissions: read-all

jobs:
build:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ on:
branches:
- main

permissions:
actions: read
checks: write
contents: read
security-events: write
# Declare default permissions as read only
permissions: read-all

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -22,6 +19,11 @@ jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
checks: write
contents: read
security-events: write

steps:
- name: Harden the runner (Audit all outbound calls)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# Declare default permissions as read only
permissions: read-all

jobs:
linter:
name: Lint Markdown Files
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
# Declare default permissions as read only
permissions: read-all

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tpip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
# Declare default permissions as read only
permissions: read-all

jobs:
report:
Expand Down
Loading