Skip to content

Commit 2a72368

Browse files
authored
Merge pull request #941 from iamemilio/support-1.23
test go 1.23
2 parents 21bf8ad + ac97a7b commit 2a72368

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/auto_assign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
addReviewers: 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)
88
reviewers:

.github/workflows/autoassign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
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

.github/workflows/ci.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Go Agent CI
44
on: pull_request
55
env:
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

99
jobs:
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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
66
FROM golang:${GO_VERSION} as builder

0 commit comments

Comments
 (0)