Skip to content

Bump github.com/docker/docker from 24.0.4+incompatible to 24.0.7+incompatible #289

Bump github.com/docker/docker from 24.0.4+incompatible to 24.0.7+incompatible

Bump github.com/docker/docker from 24.0.4+incompatible to 24.0.7+incompatible #289

Workflow file for this run

name: Git Agent Docker Image CI
on:
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
GH_URL: https://github.com
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v1
name: Set up Docker Buildx
-
name: Login to ghcr registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push on PR
uses: docker/build-push-action@v4
if: github.event_name == 'pull_request'
with:
context: .
file: ./dockerfiles/agent/git/Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ github.repository }}/git-agent:pr-${{ github.event.pull_request.number }}
build-args: |
"GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}"