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

ci(deps): bump docker/build-push-action from 2.5.0 to 2.6.1 #3800

Merged
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/go-ci-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-8)" >> $GITHUB_ENV
- name: Build
id: docker_build
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
with:
load: true
context: ./
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-dkr-image-for-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push scratch to Docker Hub
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
with:
context: .
push: true
Expand All @@ -70,7 +70,7 @@ jobs:
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- name: Push alpine to Docker Hub
if: ${{ hashFiles('Dockerfile.alpine') }} != ""
uses: docker/build-push-action@v2.4.0
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./Dockerfile.alpine
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Push debian to Docker Hub
if: ${{ hashFiles('Dockerfile.debian') }} != ""
id: build_debian
uses: docker/build-push-action@v2.4.0
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./Dockerfile.debian
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-dkr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push scratch to Docker Hub
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
id: build_scratch
with:
context: .
Expand All @@ -52,7 +52,7 @@ jobs:
COMMIT=${{ github.sha }}
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- name: Push alpine to Docker Hub
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
id: build_alpine
with:
context: .
Expand All @@ -65,7 +65,7 @@ jobs:
SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- name: Push debian to Docker Hub
id: build_debian
uses: docker/build-push-action@v2.4.0
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./Dockerfile.debian
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push scratch to Docker Hub
id: build_scratch
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
with:
context: .
push: true
Expand All @@ -164,7 +164,7 @@ jobs:
COMMIT=${{ github.sha }}
- name: Push alpine to Docker Hub
id: build_alpine
uses: docker/build-push-action@v2.5.0
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./Dockerfile.alpine
Expand All @@ -175,7 +175,7 @@ jobs:
COMMIT=${{ github.sha }}
- name: Push debian to Docker Hub
id: build_debian
uses: docker/build-push-action@v2.4.0
uses: docker/build-push-action@v2.6.1
with:
context: .
file: ./Dockerfile.debian
Expand Down