Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry # For devcontainer cache
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Login to Docker Hub # For production image testing cache pull
# Only run if the actor is NOT dependabot (secrets should be available)
if: github.actor != 'dependabot[bot]'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
# Only push final images if tests passed and it's a push to main or a tag
- name: Login to Docker Hub (for push)
if: success() && (github.event_name == 'push') # Only push on push events
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down