Skip to content

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #1694

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1

build(deps): Bump golangci/golangci-lint-action from 5.3.0 to 6.0.1 #1694

Workflow file for this run

name: docker
on:
push:
tags:
- v*.*.*
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: 'linux/amd64,linux/arm64/v8'
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}