Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump golang from 1.17rc2 to 1.17.0 #149

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dev_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
include:
- arch_os: linux_amd64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: linux_arm64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: darwin_amd64
runs_on: macos-latest
go: '1.17.0-rc2'
go: '1.17.0'
steps:
- uses: actions/checkout@v2.3.4

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
go: '1.16.5'
- arch_os: linux_amd64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: darwin_amd64
runs_on: macos-latest
go: '1.17.0-rc2'
go: '1.17.0'
steps:
- uses: actions/checkout@v2.3.4

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.16.5', '1.17.0-rc2' ]
go: [ '1.16.5', '1.17.0' ]
arch_os: [ 'linux_amd64' ]
steps:
- uses: actions/checkout@v2.3.4
Expand Down Expand Up @@ -144,13 +144,13 @@ jobs:
go: '1.16.5'
- arch_os: linux_amd64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: linux_arm64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: darwin_amd64
runs_on: macos-latest
go: '1.17.0-rc2'
go: '1.17.0'
steps:
- uses: actions/checkout@v2.3.4

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
include:
- arch_os: linux_amd64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: linux_arm64
runs_on: ubuntu-20.04
go: '1.17.0-rc2'
go: '1.17.0'
- arch_os: darwin_amd64
runs_on: macos-latest
go: '1.17.0-rc2'
go: '1.17.0'
steps:
- uses: actions/checkout@v2.3.4

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_dev
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN chmod 755 /otelcol-sumo
FROM alpine:3.13 as certs
RUN apk --update add ca-certificates

FROM golang:1.17rc2
FROM golang:1.17.0
ARG BUILD_TAG=latest
ENV TAG $BUILD_TAG
ARG USER_UID=10001
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17rc2-alpine as builder
FROM golang:1.17.0-alpine as builder
ADD . /src
WORKDIR /src/otelcolbuilder/
ENV CGO_ENABLED=0
Expand Down
4 changes: 2 additions & 2 deletions vagrant/provision.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

export BUILDER_VERSION=0.27.0
export GO_VERSION=1.17rc2
export BUILDER_VERSION=0.31.0
export GO_VERSION=1.17

# Install opentelemetry-collector-builder
curl -LJ \
Expand Down