Skip to content

Commit 8da1ed5

Browse files
authored
Merge pull request #66 from devilbox/dependabot/github_actions/cytopia/shell-command-retry-action-0.1.6
Bump cytopia/shell-command-retry-action from 0.1.5 to 0.1.6
2 parents 1828ae3 + 1f8635c commit 8da1ed5

7 files changed

+28
-28
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
if: ${{ inputs.stage_prev != '' }}
126126

127127
- name: "[Artifact Load] Import previously built image"
128-
uses: cytopia/[email protected].5
128+
uses: cytopia/[email protected].6
129129
with:
130130
command: |
131131
make load INFILE=${{ steps.set-artifact-name.outputs.prev }}
@@ -136,14 +136,14 @@ jobs:
136136
# Build
137137
# ------------------------------------------------------------
138138
- name: Pull
139-
uses: cytopia/[email protected].5
139+
uses: cytopia/[email protected].6
140140
with:
141141
command: |
142142
make docker-pull-base-image VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }}
143143
if: ${{ inputs.pull_base_image }}
144144

145145
- name: Build
146-
uses: cytopia/[email protected].5
146+
uses: cytopia/[email protected].6
147147
with:
148148
command: |
149149
make build VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }}
@@ -153,7 +153,7 @@ jobs:
153153
# Test
154154
# ------------------------------------------------------------
155155
- name: Test
156-
uses: cytopia/[email protected].5
156+
uses: cytopia/[email protected].6
157157
with:
158158
command: |
159159
make test VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }}
@@ -164,7 +164,7 @@ jobs:
164164
# Push
165165
# ------------------------------------------------------------
166166
- name: Docker Tag
167-
uses: cytopia/[email protected].5
167+
uses: cytopia/[email protected].6
168168
with:
169169
command: |
170170
make tag VERSION="${{ matrix.VERSION }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -177,7 +177,7 @@ jobs:
177177
if: ${{ inputs.push_image }}
178178

179179
- name: Docker push
180-
uses: cytopia/[email protected].5
180+
uses: cytopia/[email protected].6
181181
with:
182182
command: |
183183
make push VERSION="${{ matrix.version }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}

.github/workflows/docker-multistage-push-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
name: ${{ steps.set-artifact-name.outputs.curr }}
102102

103103
- name: "[Artifact Load] Import previously built image"
104-
uses: cytopia/[email protected].5
104+
uses: cytopia/[email protected].6
105105
with:
106106
command: |
107107
make load INFILE=${{ steps.set-artifact-name.outputs.curr }}
@@ -111,7 +111,7 @@ jobs:
111111
# Re-tag images
112112
# ------------------------------------------------------------
113113
- name: "[Docker Tag] Retag"
114-
uses: cytopia/[email protected].5
114+
uses: cytopia/[email protected].6
115115
with:
116116
command: |
117117
make tag VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -136,7 +136,7 @@ jobs:
136136
# Push images
137137
# ------------------------------------------------------------
138138
- name: Push Image
139-
uses: cytopia/[email protected].5
139+
uses: cytopia/[email protected].6
140140
with:
141141
command: |
142142
make push VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} TAG=${{ steps.tag.outputs.docker-tag }}

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
# Create Manifest
107107
# ------------------------------------------------------------
108108
- name: "[Create Manifest] (${{ steps.manifest.outputs.arches }})"
109-
uses: cytopia/[email protected].5
109+
uses: cytopia/[email protected].6
110110
with:
111111
command: |
112112
make manifest-create VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -116,7 +116,7 @@ jobs:
116116
# Deploy Manifest
117117
# ------------------------------------------------------------
118118
- name: "[Push Manifest] ${{ steps.tag.outputs.docker-tag }}"
119-
uses: cytopia/[email protected].5
119+
uses: cytopia/[email protected].6
120120
with:
121121
command: |
122122
make manifest-push VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }}

.github/workflows/docker-multistage-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
name: ${{ steps.set-artifact-name.outputs.curr }}
8484

8585
- name: "[Artifact Load] Import previously built image"
86-
uses: cytopia/[email protected].5
86+
uses: cytopia/[email protected].6
8787
with:
8888
command: |
8989
make load INFILE=${{ steps.set-artifact-name.outputs.curr }}
@@ -93,7 +93,7 @@ jobs:
9393
# Test
9494
# ------------------------------------------------------------
9595
- name: Test
96-
uses: cytopia/[email protected].5
96+
uses: cytopia/[email protected].6
9797
with:
9898
command: |
9999
make test VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }}

.github/workflows/docker-name-version-arch.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
# Build
153153
# ------------------------------------------------------------
154154
- name: Build
155-
uses: cytopia/[email protected].5
155+
uses: cytopia/[email protected].6
156156
with:
157157
command: |
158158
make build NAME=${{ matrix.name }} VERSION=${{ matrix.version }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -161,7 +161,7 @@ jobs:
161161
# Test
162162
# ------------------------------------------------------------
163163
- name: Test
164-
uses: cytopia/[email protected].5
164+
uses: cytopia/[email protected].6
165165
with:
166166
command: |
167167
make test NAME=${{ matrix.name }} VERSION=${{ matrix.version }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -177,7 +177,7 @@ jobs:
177177
if: needs.configure.outputs.can_login == 1 && inputs.can_deploy
178178

179179
- name: Docker push architecture image
180-
uses: cytopia/[email protected].5
180+
uses: cytopia/[email protected].6
181181
with:
182182
command: |
183183
make push NAME=${{ matrix.name }} VERSION=${{ matrix.version }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -239,13 +239,13 @@ jobs:
239239
password: ${{ secrets.DOCKERHUB_PASSWORD }}
240240

241241
- name: "[DEPLOY] Create Docker manifest for architectures: ${{ steps.manifest.outputs.arches }}"
242-
uses: cytopia/[email protected].5
242+
uses: cytopia/[email protected].6
243243
with:
244244
command: |
245245
make manifest-create NAME=${{ matrix.name }} VERSION=${{ matrix.version }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }}
246246
247247
- name: "[DEPLOY] Publish Docker manifest: ${{ steps.tag.outputs.docker-tag }}"
248-
uses: cytopia/[email protected].5
248+
uses: cytopia/[email protected].6
249249
with:
250250
command: |
251251
make manifest-push NAME=${{ matrix.name }} VERSION=${{ matrix.version }} TAG=${{ steps.tag.outputs.docker-tag }}

.github/workflows/docker-name-version-flavour-arch.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,13 @@ jobs:
159159
# Build
160160
# ------------------------------------------------------------
161161
- name: Pull Base
162-
uses: cytopia/[email protected].5
162+
uses: cytopia/[email protected].6
163163
with:
164164
command: |
165165
make docker-pull-base-image VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}
166166
167167
- name: Build
168-
uses: cytopia/[email protected].5
168+
uses: cytopia/[email protected].6
169169
with:
170170
retries: 10
171171
pause: 5
@@ -176,7 +176,7 @@ jobs:
176176
# Test
177177
# ------------------------------------------------------------
178178
- name: Test
179-
uses: cytopia/[email protected].5
179+
uses: cytopia/[email protected].6
180180
with:
181181
command: |
182182
make test NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -192,7 +192,7 @@ jobs:
192192
if: needs.configure.outputs.can_login == 1 && inputs.can_deploy
193193

194194
- name: Docker push architecture image
195-
uses: cytopia/[email protected].5
195+
uses: cytopia/[email protected].6
196196
with:
197197
command: |
198198
make push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -254,13 +254,13 @@ jobs:
254254
password: ${{ secrets.DOCKERHUB_PASSWORD }}
255255

256256
- name: "[DEPLOY] Create Docker manifest for architectures: ${{ steps.manifest.outputs.arches }}"
257-
uses: cytopia/[email protected].5
257+
uses: cytopia/[email protected].6
258258
with:
259259
command: |
260260
make manifest-create NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }}
261261
262262
- name: "[DEPLOY] Publish Docker manifest: ${{ steps.tag.outputs.docker-tag }}"
263-
uses: cytopia/[email protected].5
263+
uses: cytopia/[email protected].6
264264
with:
265265
command: |
266266
make manifest-push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} TAG=${{ steps.tag.outputs.docker-tag }}

.github/workflows/lint-generic.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Lint Files
22-
uses: cytopia/[email protected].5
22+
uses: cytopia/[email protected].6
2323
with:
2424
command: |
2525
make lint-files
2626
2727
- name: Lint Yaml
28-
uses: cytopia/[email protected].5
28+
uses: cytopia/[email protected].6
2929
with:
3030
command: |
3131
make lint-yaml
3232
3333
- name: Lint JSON
34-
uses: cytopia/[email protected].5
34+
uses: cytopia/[email protected].6
3535
with:
3636
command: |
3737
make lint-json
3838
3939
- name: Lint Bash
40-
uses: cytopia/[email protected].5
40+
uses: cytopia/[email protected].6
4141
with:
4242
command: |
4343
make lint-bash

0 commit comments

Comments
 (0)