Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump docker/build-push-action from 5 to 6 #28

Closed
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-test-no-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
if: steps.flags.outputs.from != 'null'
run: docker pull "${{ steps.flags.outputs.from }}"
- name: 🚀 Build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6
with:
load: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
if: steps.flags.outputs.from != 'null'
run: docker pull "${{ steps.flags.outputs.from }}"
- name: 🚀 Build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6
with:
load: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone-docker-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: Publish Standalone Docker image

# Triggers on our test branch for building docker.
on:

Check warning on line 6 in .github/workflows/standalone-docker-build-test.yml

View workflow job for this annotation

GitHub Actions / YAMLLint

truthy value should be one of [false, true]

Check warning on line 6 in .github/workflows/standalone-docker-build-test.yml

View workflow job for this annotation

GitHub Actions / YAMLLint

truthy value should be one of [false, true]
push:
branches:
- docker-build
Expand Down Expand Up @@ -49,7 +49,7 @@

- name: Build and push Docker image
id: push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name: Publish Standalone Docker image

# Only make and deploy new docker images on tagged releases.
on:

Check warning on line 6 in .github/workflows/standalone-docker-publish.yml

View workflow job for this annotation

GitHub Actions / YAMLLint

truthy value should be one of [false, true]

Check warning on line 6 in .github/workflows/standalone-docker-publish.yml

View workflow job for this annotation

GitHub Actions / YAMLLint

truthy value should be one of [false, true]
release:
types: [published]

Expand Down Expand Up @@ -49,7 +49,7 @@

- name: Build and push Docker image
id: push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/386,linux/arm/v6,linux/arm/v7,linux/arm64
Expand Down