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: 2 additions & 1 deletion .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: Dependency Review
on:
workflow_call: {}
pull_request_target:
types: [opened, reopened, synchronize]
branches: [main]
Expand All @@ -14,7 +15,7 @@ on:
permissions: {}

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: dep-review-${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
uses: 3ware/workflows/.github/workflows/pr-title.yaml@0bd5c5d052b31311b5f841f71f113260df047181 # 4.13.0

enforce-all-checks:
name: Checks
needs: [validate-pr-title]
name: Checks
permissions:
checks: read
uses: 3ware/workflows/.github/workflows/wait-for-checks.yaml@61d14ca4e861fc9c11acacc7d80a10a78775a4e3 # 4.11.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
secrets: inherit

semantic-release:
needs: [get-temp-token]
runs-on: ubuntu-latest
timeout-minutes: 30
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
needs: [get-temp-token]
steps:
- name: Decrypt the installation access token
id: decrypt-token
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/terraform-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
secrets: inherit

terraform-docs:
needs: [get-temp-token]
env:
TF_DOCS_FILE: README.md
BRANCH: ${{ github.base_ref }}
runs-on: ubuntu-latest
timeout-minutes: 5
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
needs: [get-temp-token]
env:
TF_DOCS_FILE: README.md
BRANCH: ${{ github.base_ref }}
steps:
- name: Decrypt the installation access token
id: decrypt-token
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trunk-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
trunk-upgrade:
needs: [get-temp-token]
name: Upgrade Trunk
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write # For trunk to create PRs
pull-requests: write # For trunk to create PRs
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down