Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/emailsender-central-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
- 'central/auth/m2m/**'
- '.github/workflows/emailsender-central-compatibility.yaml'

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

jobs:
e2e-test-on-kind:
timeout-minutes: 60
Expand All @@ -29,10 +33,6 @@ jobs:
id-token: write
contents: read
steps:
- name: Cancel Previous Runs
uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Quay.io
uses: docker/login-action@v3
with:
Expand All @@ -57,11 +57,11 @@ jobs:
uses: actions/setup-go@v6
with:
go-version-file: stackrox/go.mod
cache: false # repo checkout is in stackrox/ subdir, setup-go can't find go.sum
cache: false # rarely runs, and repo checkout is in stackrox/ subdir
- uses: ./stackrox/.github/actions/job-preamble
with:
free-disk-space: 40
- name: Create Kind cluster"
- name: Create Kind cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
Expand Down
Loading