Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,14 @@ jobs:
ref: "${{ github.event.pull_request.head.sha }}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: image=moby/buildkit:v0.11.6
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: "${{ env.GH_CONTAINER_REGISTRY_USERNAME }}"
password: "${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}"
- name: Build and push container
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: compiler/base/
file: compiler/base/Dockerfile
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: image=moby/buildkit:v0.11.6
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand All @@ -42,7 +40,7 @@ jobs:
username: "${{ env.DOCKER_HUB_USERNAME }}"
password: "${{ secrets.DOCKER_HUB_TOKEN }}"
- name: Build and push container
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: compiler/base/
file: compiler/base/Dockerfile
Expand Down
5 changes: 1 addition & 4 deletions ci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ components:
- docker_buildx: &docker_buildx
name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v3
with:
driver-opts: >-
image=moby/buildkit:v0.11.6

- login_ghcr: &login_ghcr
name: "Login to GitHub Container Registry"
Expand Down Expand Up @@ -52,7 +49,7 @@ components:

- build_compiler_containers: &build_compiler_containers
name: "Build and push container"
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: compiler/base/
file: compiler/base/Dockerfile
Expand Down
Loading