-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker/build-push-action action to v6
- Loading branch information
1 parent
8d09c51
commit f961e9b
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,36 +16,36 @@ jobs: | |
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: Build backend | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-core/etp-backend | ||
cache-from: type=gha,scope=backend | ||
cache-to: type=gha,mode=max,scope=backend | ||
load: true | ||
- name: Build migration runner | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-core/etp-db | ||
cache-from: type=gha,scope=db | ||
cache-to: type=gha,mode=max,scope=db | ||
load: true | ||
- name: Build frontend | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-front | ||
file: etp-front/e2e.Dockerfile | ||
cache-from: type=gha,scope=frontend | ||
cache-to: type=gha,mode=max,scope=frontend | ||
load: true | ||
- name: Build sftp | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-core/docker/sftp | ||
cache-from: type=gha,scope=sftp | ||
cache-to: type=gha,mode=max,scope=sftp | ||
load: true | ||
- name: Build smtp | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-core/docker/smtp | ||
cache-from: type=gha,scope=smtp | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ jobs: | |
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: Build storybook-test-image | ||
uses: docker/build-push-action@v5.4.0 | ||
uses: docker/build-push-action@v6.10.0 | ||
with: | ||
context: etp-front | ||
file: etp-front/visual-tests.Dockerfile | ||
|