Skip to content

Commit bc30333

Browse files
Merge branch 'main' into 00499-charts-support-key-secrets
2 parents 0273b36 + 828995a commit bc30333

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/flow-deploy-release-artifact.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ permissions:
5757
jobs:
5858
prepare-release:
5959
name: Release / Prepare
60-
runs-on: [self-hosted, Linux, medium, ephemeral]
60+
runs-on: solo-linux-medium
6161
outputs:
6262
version: ${{ steps.tag.outputs.version }}
6363
steps:
@@ -117,7 +117,7 @@ jobs:
117117

118118
publish-docker-image:
119119
name: Publish / Docker Image
120-
runs-on: [self-hosted, Linux, medium, ephemeral]
120+
runs-on: solo-linux-medium
121121
needs:
122122
- prepare-release
123123
steps:
@@ -138,31 +138,31 @@ jobs:
138138
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
139139

140140
- name: Build Docker Image (ubi8-init-dind)
141-
uses: docker/build-push-action@16ebe778df0e7752d2cfcbd924afdbbd89c1a755 # v6.6.1
141+
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
142142
with:
143143
context: docker/ubi8-init-dind
144144
platforms: linux/amd64, linux/arm64
145145
push: ${{ github.event.inputs.dry-run-enabled != 'true' }}
146146
tags: ghcr.io/${{ github.repository }}/ubi8-init-dind:${{ needs.prepare-release.outputs.version }}
147147

148148
- name: Build Docker Image (ubi8-init-java17)
149-
uses: docker/build-push-action@16ebe778df0e7752d2cfcbd924afdbbd89c1a755 # v6.6.1
149+
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
150150
with:
151151
context: docker/ubi8-init-java17
152152
platforms: linux/amd64, linux/arm64
153153
push: ${{ github.event.inputs.dry-run-enabled != 'true' }}
154154
tags: ghcr.io/${{ github.repository }}/ubi8-init-java17:${{ needs.prepare-release.outputs.version }}
155155

156156
- name: Build Docker Image (ubi8-init-java21)
157-
uses: docker/build-push-action@16ebe778df0e7752d2cfcbd924afdbbd89c1a755 # v6.6.1
157+
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
158158
with:
159159
context: docker/ubi8-init-java21
160160
platforms: linux/amd64, linux/arm64
161161
push: ${{ github.event.inputs.dry-run-enabled != 'true' }}
162162
tags: ghcr.io/${{ github.repository }}/ubi8-init-java21:${{ needs.prepare-release.outputs.version }}
163163

164164
- name: Build Docker Image (kubectl-bats)
165-
uses: docker/build-push-action@16ebe778df0e7752d2cfcbd924afdbbd89c1a755 # v6.6.1
165+
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
166166
with:
167167
context: docker/kubectl-bats
168168
platforms: linux/amd64, linux/arm64
@@ -171,7 +171,7 @@ jobs:
171171

172172
publish-helm-charts:
173173
name: Publish / Helm Charts
174-
runs-on: [self-hosted, Linux, medium, ephemeral]
174+
runs-on: solo-linux-medium
175175
needs:
176176
- prepare-release
177177
steps:
@@ -209,7 +209,7 @@ jobs:
209209

210210
create-github-release:
211211
name: Github / Release
212-
runs-on: [self-hosted, Linux, medium, ephemeral]
212+
runs-on: solo-linux-medium
213213
needs:
214214
- publish-maven-central
215215
- publish-docker-image

.github/workflows/flow-pull-request-formatting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ concurrency:
3838
jobs:
3939
title-check:
4040
name: Title Check
41-
runs-on: [self-hosted, Linux, medium, ephemeral]
41+
runs-on: solo-linux-medium
4242
steps:
4343
- name: Check PR Title
4444
uses: step-security/conventional-pr-title-action@19fb561b33015fd2184055a05ce5a3bcf2ba3f54 # v3.2.0

.github/workflows/zxc-code-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ env:
100100
jobs:
101101
analyze:
102102
name: ${{ inputs.custom-job-label || 'Analyze' }}
103-
runs-on: [self-hosted, Linux, medium, ephemeral]
103+
runs-on: solo-linux-medium
104104
steps:
105105
- name: Checkout Code
106106
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/zxc-compile-code.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ env:
8585
jobs:
8686
compile:
8787
name: ${{ inputs.custom-job-label || 'Compiles' }}
88-
runs-on: [self-hosted, Linux, medium, ephemeral]
88+
runs-on: solo-linux-medium
8989
steps:
9090
- name: Checkout Code
9191
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/zxc-helm-chart-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ permissions:
4444
jobs:
4545
test:
4646
name: ${{ inputs.custom-job-label || 'Helm Chart Test' }} (${{ matrix.scriptName }})
47-
runs-on: [self-hosted, Linux, medium, ephemeral]
47+
runs-on: solo-linux-medium
4848
strategy:
4949
fail-fast: false
5050
matrix:

.github/workflows/zxc-release-maven-central.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ env:
9090
jobs:
9191
release:
9292
name: ${{ inputs.custom-job-label || 'Release' }}
93-
runs-on: [self-hosted, Linux, medium, ephemeral]
93+
runs-on: solo-linux-medium
9494
outputs:
9595
notes: ${{ steps.create-release-notes.outputs.RELEASE_NOTES }}
9696
steps:

.github/workflows/zxf-snyk-monitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ env:
3535
jobs:
3636
snyk:
3737
name: Snyk Monitor
38-
runs-on: [self-hosted, Linux, medium, ephemeral]
38+
runs-on: solo-linux-medium
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

0 commit comments

Comments
 (0)