Skip to content

Commit 02fc0e1

Browse files
Set credentials in GitHub Action
1 parent 2ef4192 commit 02fc0e1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/update-kubernetes.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
- name: Install uv
1919
uses: astral-sh/setup-uv@v5
2020
- name: Update Kubernetes
21+
env:
22+
# Set optional secrets for Docker Hub authentication
23+
# If not set, the script will not attempt to authenticate with Docker Hub
24+
# but may run into rate limiting errors from Docker Hub.
25+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME || '' }}
26+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN || '' }}
2127
run: uv run ./ci/update-kubernetes.py
2228
- name: Show diff
2329
id: diff

0 commit comments

Comments
 (0)