Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nick-invision/retry action to v3 #240

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dbhi/qus/action@main
- run: mkdir ./docker-image/
- uses: nick-invision/retry@v2
- uses: nick-invision/retry@v3
with:
timeout_minutes: 120
retry_wait_seconds: 30
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
- run: find ./docker-image/ | grep "image.tar" | xargs -I % sh -c 'docker load --input % && rm %'
- run: docker images
- name: Login to container registries
uses: nick-invision/retry@v2
uses: nick-invision/retry@v3
with:
timeout_minutes: 120
retry_wait_seconds: 30
Expand All @@ -302,7 +302,7 @@ jobs:
- name: Docker info
run: docker info
- name: Retag
uses: nick-invision/retry@v2
uses: nick-invision/retry@v3
with:
timeout_minutes: 120
retry_wait_seconds: 30
Expand All @@ -312,7 +312,7 @@ jobs:
(jq -r 'to_entries | map("(find ./docker-image/ | grep image.tags | xargs -I $ cat $) | xargs -I % docker push " + .key + "/%") | .[]' <<<"$DOCKER_IMAGE_REGISTRIES_SECRET_MAPPING") | sh
- run: docker images
- name: Push all images to registries
uses: nick-invision/retry@v2
uses: nick-invision/retry@v3
with:
timeout_minutes: 120
retry_wait_seconds: 30
Expand Down
Loading