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

chore(deps): update docker/build-push-action action to v6 #2861

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
latest=false

- name: Server build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6

Check warning on line 93 in .github/workflows/beta.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/beta.yml#L93

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down Expand Up @@ -118,7 +118,7 @@

- name: Runner build
if: false
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ jobs:
latest=false

- name: Server build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down Expand Up @@ -632,7 +632,7 @@ jobs:
latest=false

- name: Runner build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
latest=true

- name: Server build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6

Check warning on line 96 in .github/workflows/release.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/release.yml#L96

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand All @@ -104,7 +104,7 @@
tags: ${{ steps.server.outputs.tags }}

- name: Server build with Ansible 2.16.5
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand All @@ -117,7 +117,7 @@
tags: semaphoreui/semaphore:${{ github.ref_name }}-ansible2.16.5

- name: Server build with PowerShell 7.5.0
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down Expand Up @@ -149,7 +149,7 @@
latest=true

- name: Runner build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand All @@ -160,7 +160,7 @@
tags: ${{ steps.runner.outputs.tags }}

- name: Runner build with Ansible 2.16.5
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand All @@ -171,7 +171,7 @@
tags: semaphoreui/runner:${{ github.ref_name }}-ansible2.16.5

- name: Runner build with PowerShell 7.5.0
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
Expand Down
Loading