Skip to content

Commit d4d7a0d

Browse files
authored
Merge pull request #59 from devilbox/versions
Versions
2 parents aee8782 + 90cb735 commit d4d7a0d

7 files changed

+36
-36
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ jobs:
112112
### Download and import previously built image (if it exists)
113113
###
114114
- name: "[Artifact Load] Download previously built image"
115-
uses: cytopia/[email protected].0
115+
uses: cytopia/[email protected].1
116116
with:
117117
name: ${{ steps.set-artifact-name.outputs.prev }}
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 }}
@@ -161,7 +161,7 @@ jobs:
161161
### Export current image
162162
###
163163
- name: "[Artifact Save] Upload built artifact"
164-
uses: cytopia/[email protected].4
164+
uses: cytopia/[email protected].5
165165
with:
166166
name: ${{ steps.set-artifact-name.outputs.curr }}
167167
path: ${{ steps.set-artifact-name.outputs.curr }}

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: "[SETUP] Determine Docker tag"
7777
id: tag
78-
uses: cytopia/[email protected].20
78+
uses: cytopia/[email protected].22
7979

8080
- name: "[SETUP] Set artifact names"
8181
id: set-artifact-name
@@ -96,12 +96,12 @@ jobs:
9696
### Download and import previously built image
9797
###
9898
- name: "[Artifact Load] Download previously built image"
99-
uses: cytopia/[email protected].0
99+
uses: cytopia/[email protected].1
100100
with:
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: "[SETUP] Determine Docker tag"
7777
id: tag
78-
uses: cytopia/[email protected].20
78+
uses: cytopia/[email protected].22
7979

8080
- name: "[SETUP] Determine manifest arches"
8181
id: manifest
@@ -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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ jobs:
7878
### Download and import previously built image
7979
###
8080
- name: "[Artifact Load] Download previously built image"
81-
uses: cytopia/[email protected].0
81+
uses: cytopia/[email protected].1
8282
with:
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ jobs:
146146

147147
- name: "[SETUP] Determine Docker tag"
148148
id: tag
149-
uses: cytopia/[email protected].20
149+
uses: cytopia/[email protected].22
150150

151151
# ------------------------------------------------------------
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 }}
@@ -214,7 +214,7 @@ jobs:
214214

215215
- name: "[SETUP] Determine Docker tag"
216216
id: tag
217-
uses: cytopia/[email protected].20
217+
uses: cytopia/[email protected].22
218218

219219
- name: "[SETUP] Determine manifest arches"
220220
id: manifest
@@ -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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146

147147
- name: "[SETUP] Determine Docker tag"
148148
id: tag
149-
uses: cytopia/[email protected].20
149+
uses: cytopia/[email protected].22
150150

151151
# https://github.com/alpinelinux/docker-alpine/issues/98
152152
- name: "[SETUP] Fix Docker IP forwarding"
@@ -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 }}
@@ -229,7 +229,7 @@ jobs:
229229

230230
- name: "[SETUP] Determine Docker tag"
231231
id: tag
232-
uses: cytopia/[email protected].20
232+
uses: cytopia/[email protected].22
233233

234234
- name: "[SETUP] Determine manifest arches"
235235
id: manifest
@@ -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].5
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)