Skip to content

Commit 182899a

Browse files
authored
Add Docker versioning (latest -> 1.0) (#616)
1 parent 1a65e57 commit 182899a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
file: ./docker/ubuntu.Dockerfile
4848
platforms: linux/amd64,linux/arm64
4949
push: ${{ github.ref == 'refs/heads/master' }}
50-
tags: ghcr.io/learning-process/ppc-ubuntu:latest
50+
tags: ghcr.io/learning-process/ppc-ubuntu:1.0

.github/workflows/perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
ubuntu-gcc-build-perf-stats:
66
runs-on: ubuntu-24.04
77
container:
8-
image: ghcr.io/learning-process/ppc-ubuntu:latest
8+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
99
credentials:
1010
username: ${{ github.actor }}
1111
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-24.04
1111
container:
12-
image: ghcr.io/learning-process/ppc-ubuntu:latest
12+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/static-analysis-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
clang-tidy:
2424
runs-on: ubuntu-24.04
2525
container:
26-
image: ghcr.io/learning-process/ppc-ubuntu:latest
26+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
2727
credentials:
2828
username: ${{ github.actor }}
2929
password: ${{ secrets.GITHUB_TOKEN }}
@@ -71,7 +71,7 @@ jobs:
7171
- clang-tidy
7272
runs-on: ubuntu-24.04
7373
container:
74-
image: ghcr.io/learning-process/ppc-ubuntu:latest
74+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
7575
credentials:
7676
username: ${{ github.actor }}
7777
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ubuntu.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
gcc-build:
66
runs-on: ${{ matrix.os }}
77
container:
8-
image: ghcr.io/learning-process/ppc-ubuntu:latest
8+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
99
credentials:
1010
username: ${{ github.actor }}
1111
password: ${{ secrets.GITHUB_TOKEN }}
@@ -60,7 +60,7 @@ jobs:
6060
- gcc-build
6161
runs-on: ${{ matrix.os }}
6262
container:
63-
image: ghcr.io/learning-process/ppc-ubuntu:latest
63+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
6464
credentials:
6565
username: ${{ github.actor }}
6666
password: ${{ secrets.GITHUB_TOKEN }}
@@ -92,7 +92,7 @@ jobs:
9292
- gcc-test
9393
runs-on: ${{ matrix.os }}
9494
container:
95-
image: ghcr.io/learning-process/ppc-ubuntu:latest
95+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
9696
credentials:
9797
username: ${{ github.actor }}
9898
password: ${{ secrets.GITHUB_TOKEN }}
@@ -116,7 +116,7 @@ jobs:
116116
clang-build:
117117
runs-on: ${{ matrix.os }}
118118
container:
119-
image: ghcr.io/learning-process/ppc-ubuntu:latest
119+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
120120
credentials:
121121
username: ${{ github.actor }}
122122
password: ${{ secrets.GITHUB_TOKEN }}
@@ -162,7 +162,7 @@ jobs:
162162
- clang-build
163163
runs-on: ${{ matrix.os }}
164164
container:
165-
image: ghcr.io/learning-process/ppc-ubuntu:latest
165+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
166166
credentials:
167167
username: ${{ github.actor }}
168168
password: ${{ secrets.GITHUB_TOKEN }}
@@ -194,7 +194,7 @@ jobs:
194194
- clang-test
195195
runs-on: ${{ matrix.os }}
196196
container:
197-
image: ghcr.io/learning-process/ppc-ubuntu:latest
197+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
198198
credentials:
199199
username: ${{ github.actor }}
200200
password: ${{ secrets.GITHUB_TOKEN }}
@@ -220,7 +220,7 @@ jobs:
220220
- clang-build
221221
runs-on: ${{ matrix.os }}
222222
container:
223-
image: ghcr.io/learning-process/ppc-ubuntu:latest
223+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
224224
credentials:
225225
username: ${{ github.actor }}
226226
password: ${{ secrets.GITHUB_TOKEN }}
@@ -268,7 +268,7 @@ jobs:
268268
- clang-sanitizer-build
269269
runs-on: ${{ matrix.os }}
270270
container:
271-
image: ghcr.io/learning-process/ppc-ubuntu:latest
271+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
272272
credentials:
273273
username: ${{ github.actor }}
274274
password: ${{ secrets.GITHUB_TOKEN }}
@@ -306,7 +306,7 @@ jobs:
306306
- clang-sanitizer-test
307307
runs-on: ${{ matrix.os }}
308308
container:
309-
image: ghcr.io/learning-process/ppc-ubuntu:latest
309+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
310310
credentials:
311311
username: ${{ github.actor }}
312312
password: ${{ secrets.GITHUB_TOKEN }}
@@ -334,7 +334,7 @@ jobs:
334334
- clang-test-extended
335335
runs-on: ubuntu-24.04
336336
container:
337-
image: ghcr.io/learning-process/ppc-ubuntu:latest
337+
image: ghcr.io/learning-process/ppc-ubuntu:1.0
338338
credentials:
339339
username: ${{ github.actor }}
340340
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)