Skip to content

deps(deps): bump go.opentelemetry.io/otel from 1.19.0 to 1.20.0 in /exporter/googlecloudexporter #2832

deps(deps): bump go.opentelemetry.io/otel from 1.19.0 to 1.20.0 in /exporter/googlecloudexporter

deps(deps): bump go.opentelemetry.io/otel from 1.19.0 to 1.20.0 in /exporter/googlecloudexporter #2832

Workflow file for this run

# Build is responsible for testing builds on all supported platforms.
# It is broken up into three separate jobs with targeted builds so that each OS will
# build in parallel and speed up overall CI time.
name: Build
on:
pull_request:
jobs:
build_linux:
runs-on: ubuntu-20.04
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- name: Build
run: make build-linux
- name: Scan Third Party Dependency Licenses
run: |
go install github.com/uw-labs/[email protected]
lichen --config=./license.yaml $(find dist/collector_* dist/updater_*)
build_darwin:
runs-on: macos-11
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- name: Build
run: make build-darwin
- name: Scan Third Party Dependency Licenses
run: |
go install github.com/uw-labs/[email protected]
lichen --config=./license.yaml $(find dist/collector_* dist/updater_*)
build_windows:
runs-on: ubuntu-20.04
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- name: Build
run: make build-windows
- name: Scan Third Party Dependency Licenses
run: |
go install github.com/uw-labs/[email protected]
lichen --config=./license.yaml dist/collector_windows_amd64.exe dist/updater_windows_amd64.exe