gomod: bump golang.org/x/tools from 0.25.0 to 0.27.0 #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2024 The Cockroach Authors | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# This workflow is based off of the example at | |
# https://github.com/docker/metadata-action | |
# | |
# Multi-platform configuration from | |
# https://github.com/docker/build-push-action/blob/primary/docs/advanced/multi-platform.md | |
# | |
# Caching from | |
# https://github.com/docker/build-push-action/blob/primary/docs/advanced/cache.md' | |
name: Docker | |
permissions: | |
contents: read | |
on: | |
push: | |
tags: [ 'v*.*.*' ] | |
# PR's will trigger an image build, but the push action is disabled. | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
build_binaries: | |
description: 'Docker' | |
type: boolean | |
required: false | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: cockroachdb/visus | |
labels: | | |
org.opencontainers.image.title=Visus | |
org.opencontainers.image.vendor=Cockroach Labs Inc. | |
org.opencontainers.image.descripton=Prototype, not officially supported | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |