You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -207,7 +167,7 @@ jobs:
207
167
uses: docker/login-action@v3
208
168
with:
209
169
username: ${{ secrets.DOCKER_HUB_USERNAME }}
210
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
170
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
211
171
- name: "Pull previous images to speed up builds"
212
172
run: |
213
173
for SERVICE in ${BUILD_IMAGES}; do (docker pull ${CI_REGISTRY_IMAGE}/${SERVICE}:edge | grep -i -e 'Pulling from' -e Digest -e Status -e Error) || true; done
@@ -316,10 +276,10 @@ jobs:
316
276
needs:
317
277
- start-runner-test_keepdb
318
278
container:
319
-
image: ghcr.io/fews-net/inf/docker:latest
279
+
image: airorg/fewsnet-inf:docker-latest
320
280
credentials:
321
-
username: ${{ github.repository_owner }}
322
-
password: ${{ secrets.GHCR_PAT }}
281
+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
282
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
323
283
defaults:
324
284
run:
325
285
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -350,7 +310,7 @@ jobs:
350
310
uses: docker/login-action@v3
351
311
with:
352
312
username: ${{ secrets.DOCKER_HUB_USERNAME }}
353
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
313
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
354
314
- name: "Pull previous images to speed up builds"
355
315
run: |
356
316
for SERVICE in ${BUILD_IMAGES}; do (docker pull ${CI_REGISTRY_IMAGE}/${SERVICE}:edge | grep -i -e 'Pulling from' -e Digest -e Status -e Error) || true; done
@@ -441,10 +401,10 @@ jobs:
441
401
needs:
442
402
- start-runner-test_main
443
403
container:
444
-
image: ghcr.io/fews-net/inf/docker:latest
404
+
image: airorg/fewsnet-inf:docker-latest
445
405
credentials:
446
-
username: ${{ github.repository_owner }}
447
-
password: ${{ secrets.GHCR_PAT }}
406
+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
407
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
448
408
defaults:
449
409
run:
450
410
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -475,7 +435,7 @@ jobs:
475
435
uses: docker/login-action@v3
476
436
with:
477
437
username: ${{ secrets.DOCKER_HUB_USERNAME }}
478
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
438
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
479
439
- name: "Pull previous images to speed up builds"
480
440
run: |
481
441
echo Using registry image ${CI_REGISTRY_IMAGE}
@@ -569,10 +529,10 @@ jobs:
569
529
needs:
570
530
- start-runner-test_tag
571
531
container:
572
-
image: ghcr.io/fews-net/inf/docker:latest
532
+
image: airorg/fewsnet-inf:docker-latest
573
533
credentials:
574
-
username: ${{ github.repository_owner }}
575
-
password: ${{ secrets.GHCR_PAT }}
534
+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
535
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
576
536
defaults:
577
537
run:
578
538
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -603,7 +563,7 @@ jobs:
603
563
uses: docker/login-action@v3
604
564
with:
605
565
username: ${{ secrets.DOCKER_HUB_USERNAME }}
606
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
566
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
607
567
- uses: "actions/checkout@v4"
608
568
with:
609
569
ssh-key: ${{ secrets.GIT_SSH_PRIVATE_KEY }}
@@ -694,15 +654,15 @@ jobs:
694
654
needs:
695
655
- start-runner-test_branch # required to get output from the start-runner-test_branch job
696
656
- test_branch # required to wait until the main jobs are done
0 commit comments