Update dependency awscli to v1.36.32 #1090
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
workflow_dispatch: {} | |
# schedule: | |
# - cron: "0 16 * * 1" | |
push: | |
branches: | |
- main | |
paths: | |
- aws-cli/** | |
- aws-cli-action/** | |
- aws-s3/Dockerfile | |
- aws-s3/entrypoint.sh | |
pull_request: | |
paths: | |
- aws-cli/** | |
- aws-cli-action/** | |
- aws-s3/Dockerfile | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker_aws_cli: | |
name: docker build (aws-cli) | |
uses: Docker-Collection/reusable-workflows/.github/workflows/docker-build.yml@main | |
with: | |
docker_name: "ghcr.io/docker-collection/aws-cli" | |
context: "aws-cli/" | |
dockerfile: "aws-cli/Dockerfile" | |
docker_label_author: "Efina" | |
docker_label_title: "Docker AWS CLI" | |
docker_label_description: "AWS CLI in Docker" | |
version_detecter: true | |
version_detecter_file: "aws-cli/requirements.txt" | |
version_detecter_var: "awscli==" | |
version_detecter_cut: "3" | |
docker_aws_cli_action: | |
name: docker build (aws-cli-action) | |
uses: Docker-Collection/reusable-workflows/.github/workflows/docker-build.yml@main | |
with: | |
docker_name: "ghcr.io/docker-collection/aws-cli-action" | |
context: "aws-cli-action/" | |
dockerfile: "aws-cli-action/Dockerfile" | |
docker_label_author: "Efina" | |
docker_label_title: "Docker AWS CLI Action" | |
docker_label_description: "AWS CLI for Action" | |
docker_aws_s3: | |
needs: [ "docker_aws_cli" ] | |
name: docker build (aws-s3) | |
uses: Docker-Collection/reusable-workflows/.github/workflows/docker-build.yml@main | |
with: | |
docker_name: "ghcr.io/docker-collection/aws-s3" | |
context: "aws-s3/" | |
dockerfile: "aws-s3/Dockerfile" | |
docker_label_author: "Efina" | |
docker_label_title: "Docker AWS S3" | |
docker_label_description: "AWS S3 in Docker" |