We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb63d0 commit 718e895Copy full SHA for 718e895
.github/workflows/e2e.yml
@@ -19,6 +19,16 @@ jobs:
19
- name: Checkout code
20
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
21
22
+ # Authenticate to Docker Hub to avoid pull rate limits.
23
+ # Skipped on fork PRs where secrets are unavailable — those runs
24
+ # fall back to unauthenticated pulls and may be rate-limited.
25
+ - name: Log in to Docker Hub
26
+ if: secrets.DOCKER_PASSWORD != ''
27
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
28
+ with:
29
+ username: finos
30
+ password: ${{ secrets.DOCKER_PASSWORD }}
31
+
32
- name: Set up Docker Buildx
33
uses: docker/setup-buildx-action@7c525be6cc8a882d5163ce04293cac18617c709f
34
0 commit comments