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
12 changes: 6 additions & 6 deletions .github/workflows/build-base-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

# - name: Log in to Docker Hub
# uses: docker/login-action@v2
Expand All @@ -25,14 +25,14 @@ jobs:
# password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push remote
uses: docker/bake-action@v5
uses: docker/bake-action@v7
with:
push: true
set: |
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Build and push remote (tag)
if: ${{ github.ref_type == 'tag' }}
uses: docker/bake-action@v5
uses: docker/bake-action@v7
with:
push: true
set: |
Expand All @@ -57,7 +57,7 @@ jobs:
run: docker image ls

- name: Build and push local
uses: docker/bake-action@v5
uses: docker/bake-action@v7
with:
load: true
set: |
Expand Down