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
8 changes: 5 additions & 3 deletions .github/workflows/__call-ci-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
# This workflow will run tests using node and then create a draft release on GitHub for push events to master.

name: CI-Node (called)
permissions:
contents: read
permissions: {}

on:
workflow_call:
Expand Down Expand Up @@ -40,9 +39,11 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

build:
runs-on: ubuntu-latest
needs:
- setup_release
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -120,6 +121,7 @@ jobs:
needs:
- setup_release
- build
permissions: {}
runs-on: ubuntu-latest
steps:
- name: Create Release
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/__call-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# This workflow will analyze all supported languages in the repository using CodeQL Analysis.

name: CodeQL (called)
permissions:
contents: read
permissions: {}

on:
pull_request:
Expand All @@ -12,6 +11,8 @@ on:
jobs:
languages:
name: Get language matrix
permissions:
contents: read
outputs:
matrix: ${{ steps.lang.outputs.result }}
continue: ${{ steps.continue.outputs.result }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/__call-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
# `true` to extract artifacts from the `/artifacts` directory to the GitHub runner.

name: Docker (called)
permissions:
contents: read
permissions: {}

on:
pull_request:
Expand Down Expand Up @@ -61,6 +60,8 @@ on:
jobs:
check_dockerfiles:
name: Check Dockerfiles
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -321,6 +322,8 @@ jobs:
needs:
- check_dockerfiles
- docker
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down