|
89 | 89 | username: ${{ github.actor }} |
90 | 90 | password: ${{ secrets.GITHUB_TOKEN }} |
91 | 91 |
|
| 92 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 93 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 94 | + uses: docker/login-action@v3 |
| 95 | + with: |
| 96 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 97 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 98 | + # worst case of this failing is running into Docker Hub rate limit |
| 99 | + continue-on-error: true |
| 100 | + |
92 | 101 | - name: Set up Docker Buildx |
93 | 102 | uses: docker/setup-buildx-action@v3 |
94 | 103 |
|
@@ -302,6 +311,15 @@ jobs: |
302 | 311 | username: ${{ github.actor }} |
303 | 312 | password: ${{ secrets.GITHUB_TOKEN }} |
304 | 313 |
|
| 314 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 315 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 316 | + uses: docker/login-action@v3 |
| 317 | + with: |
| 318 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 319 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 320 | + # worst case of this failing is running into Docker Hub rate limit |
| 321 | + continue-on-error: true |
| 322 | + |
305 | 323 | - name: Download images from artifacts (for forked PR's or dependabot) |
306 | 324 | # trigger only for forked PR's that don't have permissions to push to the container registry |
307 | 325 | if: ${{ env.use_registry == 'false' }} |
@@ -391,6 +409,15 @@ jobs: |
391 | 409 | username: ${{ github.actor }} |
392 | 410 | password: ${{ secrets.GITHUB_TOKEN }} |
393 | 411 |
|
| 412 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 413 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 414 | + uses: docker/login-action@v3 |
| 415 | + with: |
| 416 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 417 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 418 | + # worst case of this failing is running into Docker Hub rate limit |
| 419 | + continue-on-error: true |
| 420 | + |
394 | 421 | - name: Download images from artifacts (for forked PR's or dependabot) |
395 | 422 | # trigger only for forked PR's that don't have permissions to push to the container registry |
396 | 423 | if: ${{ env.use_registry == 'false' }} |
@@ -451,6 +478,15 @@ jobs: |
451 | 478 | username: ${{ github.actor }} |
452 | 479 | password: ${{ secrets.GITHUB_TOKEN }} |
453 | 480 |
|
| 481 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 482 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 483 | + uses: docker/login-action@v3 |
| 484 | + with: |
| 485 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 486 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 487 | + # worst case of this failing is running into Docker Hub rate limit |
| 488 | + continue-on-error: true |
| 489 | + |
454 | 490 | - name: Download images from artifacts (for forked PR's or dependabot) |
455 | 491 | # trigger only for forked PR's that don't have permissions to push to the container registry |
456 | 492 | if: ${{ env.use_registry == 'false' }} |
@@ -525,6 +561,15 @@ jobs: |
525 | 561 | username: ${{ github.actor }} |
526 | 562 | password: ${{ secrets.GITHUB_TOKEN }} |
527 | 563 |
|
| 564 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 565 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 566 | + uses: docker/login-action@v3 |
| 567 | + with: |
| 568 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 569 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 570 | + # worst case of this failing is running into Docker Hub rate limit |
| 571 | + continue-on-error: true |
| 572 | + |
528 | 573 | - name: Download images from artifacts (for forked PR's or dependabot) |
529 | 574 | # trigger only for forked PR's that don't have permissions to push to the container registry |
530 | 575 | if: ${{ env.use_registry == 'false' }} |
@@ -636,6 +681,15 @@ jobs: |
636 | 681 | username: ${{ github.actor }} |
637 | 682 | password: ${{ secrets.GITHUB_TOKEN }} |
638 | 683 |
|
| 684 | + - name: Login to Docker Hub to increase rate limit on pulls |
| 685 | + # https://github.com/docker/login-action?tab=readme-ov-file#dockerhub |
| 686 | + uses: docker/login-action@v3 |
| 687 | + with: |
| 688 | + username: ${{ vars.DOCKERHUB_USERNAME }} |
| 689 | + password: ${{ secrets.DOCKERHUB_TOKEN }} |
| 690 | + # worst case of this failing is running into Docker Hub rate limit |
| 691 | + continue-on-error: true |
| 692 | + |
639 | 693 | - name: Download images from artifacts (for forked PR's or dependabot) |
640 | 694 | # trigger only for forked PR's that don't have permissions to push to the container registry |
641 | 695 | if: ${{ env.use_registry == 'false' }} |
|
0 commit comments