Skip to content
Open
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
5 changes: 5 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
- "hadolint.yaml"
- ".github/workflows/build-test.yml"

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

env:
IMAGE_NAME: "terraform-aws-cli"

Expand Down Expand Up @@ -97,5 +101,6 @@ jobs:
AWS_CLI_VERSION=${{ matrix.awscli_versions }}
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
push: false
load: false
cache-from: type=gha
cache-to: type=gha,mode=max
5 changes: 5 additions & 0 deletions .github/workflows/dockerhub-description-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
paths:
- README.md
- .github/workflows/dockerhub-description.yml

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

jobs:
dockerHubDescription:
runs-on: ubuntu-22.04
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/lint-dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@ on:
- "!master"
paths:
- "Dockerfile"
- "hadolint.yaml"
- ".github/workflows/lint-dockerfile.yml"
pull_request:
branches:
- master
paths:
- "Dockerfile"
- "hadolint.yaml"
- ".github/workflows/lint-dockerfile.yml"

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

jobs:
lint:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/push-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: push-latest
# trigger on push to master
# only on Dockerfile related modifications
on:
workflow_dispatch:
push:
branches:
- "master"
Expand All @@ -16,6 +17,10 @@ on:
- "supported_platforms.json"
- "tests/**"

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

jobs:
build_push_latest:
runs-on: ubuntu-22.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
release:
types: [published]

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

jobs:
load_supported_versions:
runs-on: ubuntu-22.04
Expand Down
Loading