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

build(deps): bump docker/build-push-action from 5 to 6 #488

Merged
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Build linter dependencies image
if: env.CACHE_HIT == 'false'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build linter image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile_linter
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:

- name: Build and push image if input files changed
if: env.CACHE_HIT == 'false'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_dependencies
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build unit test image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
target: builder
Expand All @@ -236,7 +236,7 @@ jobs:

- name: Build and push production image
if: ${{ github.event_name == 'push' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down