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/addlicense.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
- "**"
pull_request:

permissions:
contents: read

concurrency:
group: ${{ github.ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/build-ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ name: Build CI Image
on:
workflow_dispatch: # Allow manual trigger

permissions:
contents: read

concurrency:
group: ${{ github.ref || github.run_id }}
cancel-in-progress: true
Expand All @@ -25,6 +28,10 @@ jobs:
build:
runs-on: ubuntu-24.04

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
# push: # Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions)
pull_request:

permissions:
contents: read

env: # Comment env block if you don't want to apply fixes
# Apply linter fixes configuration
APPLY_FIXES: all # When active, APPLY_FIXES must also be defined as environment variable (in github/workflows/mega-linter.yml or other CI tool)
Expand All @@ -42,7 +45,6 @@ jobs:
contents: write
issues: write
pull-requests: write
statuses: write
steps:
# Git Checkout
- name: Checkout Code
Expand All @@ -62,7 +64,6 @@ jobs:
VALIDATE_ALL_CODEBASE: "true"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# ADD YOUR CUSTOM ENV VARIABLES HERE OR DEFINE THEM IN A FILE .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY
GITHUB_STATUS_REPORTER: "true"
GITHUB_COMMENT_REPORTER: "true"
PYTHON_RUFF_ARGUMENTS: --config pyproject.toml --config 'output-format="github"'
PYTHON_RUFF_FORMAT_ARGUMENTS: --config pyproject.toml --config 'output-format="github"'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ concurrency:
group: ${{ github.ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true

permissions:
contents: read

jobs:
# Upload Trivy data
trivy:
Expand Down
Loading