File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 22addReviewers : true
33
44# Set to true to add assignees to pull requests
5- addAssignees : false
5+ addAssignees : true
66
77# A list of reviewers to be added to pull requests (GitHub user name)
88reviewers :
Original file line number Diff line number Diff line change 77 add-reviews :
88 runs-on : ubuntu-latest
99 steps :
10- - uses : kentaro-m/auto-assign-action@v1.2 .0
10+ - uses : kentaro-m/auto-assign-action@v2.0 .0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Go Agent CI
44on : pull_request
55env :
66 # Specifies which go version to run integration tests on
7- INTEGRATION_TESTS_GO_VERSION : 1.21.5
7+ INTEGRATION_TESTS_GO_VERSION : latest
88
99jobs :
1010 go-agent-v3 :
@@ -15,11 +15,13 @@ jobs:
1515 matrix :
1616 include :
1717 # Core Tests on 3 most recent major Go versions
18- - go-version : 1.19.0
18+ - go-version : 1.20.14
1919 dirs : v3/newrelic,v3/internal,v3/examples
20- - go-version : 1.20.0
20+ - go-version : 1.21
2121 dirs : v3/newrelic,v3/internal,v3/examples
22- - go-version : 1.21.0
22+ - go-version : latest
23+ dirs : v3/newrelic,v3/internal,v3/examples
24+ - go-version : 1.23rc2
2325 dirs : v3/newrelic,v3/internal,v3/examples
2426
2527 # Integration Tests on highest Supported Go Version
@@ -107,11 +109,11 @@ jobs:
107109 matrix :
108110 include :
109111 # Core Tests on 3 most recent major Go versions
110- - go-version : 1.19.0
112+ - go-version : 1.20.14
111113 dirs : v3/newrelic,v3/internal,v3/examples
112- - go-version : 1.20.0
114+ - go-version : 1.21
113115 dirs : v3/newrelic,v3/internal,v3/examples
114- - go-version : 1.21.0
116+ - go-version : latest
115117 dirs : v3/newrelic,v3/internal,v3/examples
116118 steps :
117119 - name : Checkout Code
Original file line number Diff line number Diff line change 11# This file is used to build the docker image for the Go Agent's GitHub Action tests
22# Default go version if no arguments passed in
3- ARG GO_VERSION=1.19
3+ ARG GO_VERSION=1.20
44
55# Takes in go version
66FROM golang:${GO_VERSION} as builder
You can’t perform that action at this time.
0 commit comments