Skip to content

Commit

Permalink
start testing on go 1.22 (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
dashpole authored Feb 9, 2024
1 parent 4cdbea2 commit 2d49ceb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
# Path to where test results will be saved.
TEST_RESULTS: /tmp/test-results
# Default minimum version of Go to support.
DEFAULT_GO_VERSION: "1.21"
DEFAULT_GO_VERSION: "1.22"
jobs:
lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
compatibility-test:
strategy:
matrix:
go-version: ["1.21", "1.20"]
go-version: ["1.22", "1.21", "1.20"]
os: [ubuntu-latest, macos-latest, windows-latest]
arch: ["386", amd64]
exclude:
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild-e2e-cloud-functions-gen2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

steps:
# Vendor dependencies, and zip the code.
- name: golang:1.21
- name: golang:1.22
id: zip-code
entrypoint: /bin/bash
args:
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

steps:
- name: golang:1.21
- name: golang:1.22
env: ["SECOND_PROJECT_ID=opentelemetry-ops-e2e-2"]
args: ["make", "integrationtest"]
logsBucket: gs://opentelemetry-ops-e2e-cloud-build-logs
2 changes: 1 addition & 1 deletion e2e-test-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.21 as builder
FROM golang:1.22 as builder

WORKDIR /workspace/e2e-test-server/

Expand Down

0 comments on commit 2d49ceb

Please sign in to comment.