Skip to content

chore(deps): Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 #1078

chore(deps): Bump docker/setup-buildx-action from 3.6.1 to 3.7.1

chore(deps): Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 #1078

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/[email protected]
-
name: Set up QEMU
uses: docker/[email protected]
-
name: Set up Docker Buildx
uses: docker/[email protected]
-
name: Login to GitHub Container Registry
uses: docker/[email protected]
if: github.ref == 'refs/heads/main'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: base
run: make base
-
name: unit-tests
run: make unit-tests
-
name: codecov
uses: codecov/[email protected]
with:
files: ./_out/coverage-unit-tests.txt
-
name: unit-tests-race
run: make unit-tests-race
-
name: lint
run: make lint
-
name: runtime
run: make runtime
-
name: image-runtime
run: make image-runtime
-
name: push-image-runtime
if: github.ref == 'refs/heads/main'
env:
PUSH: "true"
run: make image-runtime
-
name: push-image-runtime-latest
if: github.ref == 'refs/heads/main'
env:
PUSH: "true"
run: make image-runtime TAG=latest