ci: login to dockerhub to avoid rate limiting

This commit is contained in:
Nicolas Duchon 2024-05-15 21:31:17 +02:00
parent dcc97b9cff
commit f0f71f72f7

View file

@ -36,6 +36,12 @@ jobs:
pip install -r python-requirements.txt
working-directory: test/requirements
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Pull nginx:alpine image
run: docker pull nginx:alpine