Skip to content

Commit 63b1bed

Browse files
committed
Bump shell-command-retry
1 parent aee8782 commit 63b1bed

7 files changed

+26
-26
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
if: ${{ inputs.stage_prev != '' }}
119119

120120
- name: "[Artifact Load] Import previously built image"
121-
uses: cytopia/[email protected].3
121+
uses: cytopia/[email protected].5
122122
with:
123123
command: |
124124
make load INFILE=${{ steps.set-artifact-name.outputs.prev }}
@@ -129,14 +129,14 @@ jobs:
129129
# Build
130130
# ------------------------------------------------------------
131131
- name: Pull
132-
uses: cytopia/[email protected].3
132+
uses: cytopia/[email protected].5
133133
with:
134134
command: |
135135
make docker-pull-base-image VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}
136136
if: ${{ inputs.pull_base_image }}
137137

138138
- name: Build
139-
uses: cytopia/[email protected].3
139+
uses: cytopia/[email protected].5
140140
with:
141141
command: |
142142
make build VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}
@@ -146,7 +146,7 @@ jobs:
146146
# Test
147147
# ------------------------------------------------------------
148148
- name: Test
149-
uses: cytopia/[email protected].3
149+
uses: cytopia/[email protected].5
150150
with:
151151
command: |
152152
make test VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}

.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].3
104+
uses: cytopia/[email protected].5
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].3
114+
uses: cytopia/[email protected].5
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].3
139+
uses: cytopia/[email protected].5
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
@@ -104,7 +104,7 @@ jobs:
104104
# Create Manifest
105105
# ------------------------------------------------------------
106106
- name: "[Create Manifest] (${{ steps.manifest.outputs.arches }})"
107-
uses: cytopia/[email protected].3
107+
uses: cytopia/[email protected].5
108108
with:
109109
command: |
110110
make manifest-create VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }}
@@ -114,7 +114,7 @@ jobs:
114114
# Deploy Manifest
115115
# ------------------------------------------------------------
116116
- name: "[Push Manifest] ${{ steps.tag.outputs.docker-tag }}"
117-
uses: cytopia/[email protected].3
117+
uses: cytopia/[email protected].5
118118
with:
119119
command: |
120120
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].3
86+
uses: cytopia/[email protected].5
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].3
96+
uses: cytopia/[email protected].5
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].3
155+
uses: cytopia/[email protected].5
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].3
164+
uses: cytopia/[email protected].5
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].3
180+
uses: cytopia/[email protected].5
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].3
242+
uses: cytopia/[email protected].5
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].3
248+
uses: cytopia/[email protected].5
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].3
162+
uses: cytopia/[email protected].5
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].3
168+
uses: cytopia/[email protected].5
169169
with:
170170
retries: 10
171171
pause: 5
@@ -176,7 +176,7 @@ jobs:
176176
# Test
177177
# ------------------------------------------------------------
178178
- name: Test
179-
uses: cytopia/[email protected].3
179+
uses: cytopia/[email protected].5
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].3
195+
uses: cytopia/[email protected].5
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].3
257+
uses: cytopia/[email protected].
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].3
263+
uses: cytopia/[email protected].5
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].3
22+
uses: cytopia/[email protected].5
2323
with:
2424
command: |
2525
make lint-files
2626
2727
- name: Lint Yaml
28-
uses: cytopia/[email protected].3
28+
uses: cytopia/[email protected].5
2929
with:
3030
command: |
3131
make lint-yaml
3232
3333
- name: Lint JSON
34-
uses: cytopia/[email protected].3
34+
uses: cytopia/[email protected].5
3535
with:
3636
command: |
3737
make lint-json
3838
3939
- name: Lint Bash
40-
uses: cytopia/[email protected].3
40+
uses: cytopia/[email protected].5
4141
with:
4242
command: |
4343
make lint-bash

0 commit comments

Comments
 (0)