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
3 changes: 3 additions & 0 deletions .github/workflows/dependency-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
# Allows you to run this workflow manually from the Actions tab in GitHub UI
workflow_dispatch:

permissions:
contents: read

# cancel other workflow run in the same head-base group if it exists
concurrency:
group: dep-checker-${{ github.head_ref || github.run_id }}-${{ github.base_ref }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ on:
# keep in mind this will have ALL tests enabled
workflow_dispatch:

# read access for repo checkout and cache restore action; jobs may request more where needed
permissions:
contents: read
actions: read

# cancel other PR workflow run in the same head-base group if it exists (e.g. during PR syncs)
# if this is not a PR run (no github.head_ref and github.base_ref defined), use an UID as group
concurrency:
Expand Down Expand Up @@ -134,6 +139,9 @@ jobs:
name: Build Clusters on JDK ${{ matrix.java }}
if: contains(github.event.pull_request.labels.*.name, 'ci:no-build') == false
runs-on: ubuntu-latest
# write access for cache
permissions:
actions: write
timeout-minutes: 40
strategy:
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ on:
# Allows you to run this workflow manually from the Actions tab in GitHub UI
workflow_dispatch:

permissions:
contents: read

# cancel other PR workflow run in the same head-base group if it exists (e.g. during PR syncs)
# if this is not a PR run (no github.head_ref and github.base_ref defined), use an UID as group
concurrency:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/native-binary-build-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ on:
# Allows you to run this workflow manually from the Actions tab in GitHub UI
workflow_dispatch:

permissions:
contents: read

# cancel other PR workflow run in the same head-base group if it exists (e.g. during PR syncs)
# if this is not a PR run (no github.head_ref and github.base_ref defined), use an UID as group
concurrency:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/native-binary-build-lib.profiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ on:
# Allows you to run this workflow manually from the Actions tab in GitHub UI
workflow_dispatch:

permissions:
contents: read

# cancel other PR workflow run in the same head-base group if it exists (e.g. during PR syncs)
# if this is not a PR run (no github.head_ref and github.base_ref defined), use an UID as group
concurrency:
Expand Down