Skip to content
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
22 changes: 11 additions & 11 deletions .github/workflows/github-docker-registry-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Build and push a simple jenkins controller
# This step builds and pushes a simple Jenkins controller
if: (contains(env.files, 'dockerfiles/Dockerfile') || contains(env.files, 'dockerfiles/')) && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles
platforms: linux/amd64, linux/arm64
Expand All @@ -190,7 +190,7 @@ jobs:
- name: Build and push the jenkins agent for maven tutorial
# This step builds and pushes the Jenkins agent for the Maven tutorial
if: contains(env.files, 'dockerfiles/maven/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/maven
platforms: linux/amd64, linux/arm64
Expand All @@ -200,7 +200,7 @@ jobs:
- name: Build and push the jenkins agent for python tutorial
# This step builds and pushes the Jenkins agent for the Python tutorial
if: contains(env.files, 'dockerfiles/python/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/python
platforms: linux/amd64, linux/arm64
Expand All @@ -210,7 +210,7 @@ jobs:
- name: Build and push the jenkins agent for node tutorial
# This step builds and pushes the Jenkins agent for the Node.js tutorial
if: contains(env.files, 'dockerfiles/node/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/node
platforms: linux/amd64, linux/arm64
Expand All @@ -220,7 +220,7 @@ jobs:
- name: Build and push the jenkins agent for the sidekick container
# This step builds and pushes the Jenkins agent for the sidekick container
if: contains(env.files, 'dockerfiles/sidekick/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/sidekick
platforms: linux/amd64, linux/arm64
Expand All @@ -230,7 +230,7 @@ jobs:
- name: Build and push the jenkins agent for the agent-finding container
# This step builds and pushes the Jenkins agent for the agent-finding container
if: contains(env.files, 'dockerfiles/agent-discovery/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/agent-discovery/
platforms: linux/amd64, linux/arm64
Expand All @@ -240,7 +240,7 @@ jobs:
- name: Build and push the jenkins agent for multi-branch controller
# This step builds and pushes the Jenkins agent for the multi-branch controller
if: contains(env.files, 'dockerfiles/multi/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/multi
platforms: linux/amd64, linux/arm64
Expand All @@ -250,7 +250,7 @@ jobs:
- name: Build and push the jenkins agent for Android
# This step builds and pushes the Jenkins agent for Android
if: contains(env.files, 'dockerfiles/android/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/android
platforms: linux/amd64
Expand All @@ -260,7 +260,7 @@ jobs:
- name: Build and push the jenkins agent for golang tutorial
# This step builds and pushes the Jenkins agent for the Golang tutorial
if: contains(env.files, 'dockerfiles/golang/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/golang
platforms: linux/amd64, linux/arm64
Expand All @@ -270,7 +270,7 @@ jobs:
- name: Build and push the jenkins agent for cpp tutorial
# This step builds and pushes the Jenkins agent for the C++ tutorial
if: contains(env.files, 'dockerfiles/cpp/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/cpp
platforms: linux/amd64, linux/arm64
Expand All @@ -280,7 +280,7 @@ jobs:
- name: Build and push the jenkins agent for dotnet tutorial
# This step builds and pushes the Jenkins agent for the .NET tutorial
if: contains(env.files, 'dockerfiles/dotnet/') && env.IS_FORK != 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./dockerfiles/dotnet
platforms: linux/amd64, linux/arm64
Expand Down
Loading