Skip to content

chore(deps): bump golang.org/x/term from 0.18.0 to 0.21.0 #2985

chore(deps): bump golang.org/x/term from 0.18.0 to 0.21.0

chore(deps): bump golang.org/x/term from 0.18.0 to 0.21.0 #2985

Workflow file for this run

name: "Build"
on:
push:
branches: [2.9, 3.1, 3.2, 3.3, main]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- '**.go'
- 'go.mod'
- '.github/workflows/build.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
Build:
name: Build
runs-on: [self-hosted, linux, arm64, aws, large]
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
platform:
- { os: linux, arch: amd64 }
- { os: linux, arch: arm64 }
- { os: linux, arch: s390x }
- { os: linux, arch: ppc64le }
- { os: windows, arch: amd64 }
- { os: darwin, arch: amd64 }
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Build
run: |
GOOS=${{ matrix.platform.os }} GOARCH=${{ matrix.platform.arch }} make go-install