Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ on:
- closed

permissions:
contents: write
pull-requests: write
contents: read

concurrency:
group: pages-preview-${{ github.event.pull_request.number }}
Expand All @@ -22,6 +21,9 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
Expand Down
27 changes: 14 additions & 13 deletions .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: OpenSSF Scorecard
on:
push:
branches: [main]
schedule:
- cron: '30 4 * * 1'
workflow_dispatch:
push:
branches: [main]
schedule:
- cron: '30 4 * * 1'
workflow_dispatch:

permissions: read-all
permissions:
contents: read

jobs:
scorecard:
uses: platform-mesh/.github/.github/workflows/job-ossf-scorecard.yml@f58cb68ac72e6165f845d21e5729f1037dc1eb22 # main
permissions:
security-events: write
id-token: write
contents: read
actions: read
scorecard:
uses: platform-mesh/.github/.github/workflows/job-ossf-scorecard.yml@f58cb68ac72e6165f845d21e5729f1037dc1eb22 # main
permissions:
security-events: write
id-token: write
contents: read
actions: read
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

permissions:
contents: write
contents: read

concurrency:
group: pages-${{ github.ref_name }}
Expand All @@ -17,6 +17,8 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
Expand Down
Loading