Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.
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: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on:
env:
DOCKER_BUILDKIT: 1

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

jobs:

vars:
Expand All @@ -37,10 +41,6 @@ jobs:
git_tag: ${{ steps.vars.outputs.git_tag }}
repo_name: ${{ steps.vars.outputs.repo }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v2
- name: Output Variables
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: '45 2 * * 4'

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

jobs:
analyze:
name: Analyze
Expand All @@ -23,10 +27,6 @@ jobs:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v2

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on:
paths:
- README.md
- .github/workflows/dockerhub-description.yml

concurrency:
group: ${{ github.ref_name }}-dockerhub-description
cancel-in-progress: true

jobs:
dockerHubDescription:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2

- name: Modify readme for DockerHub
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ on:
- '**.md'
- 'LICENSE'

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

jobs:

scan:
name: Fossa
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v2
- name: Scan
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ defaults:
run:
shell: bash

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

env:
GOLANGCI_TIMEOUT: 10m0s

Expand All @@ -26,10 +30,6 @@ jobs:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v2
- name: Lint Code
Expand Down