diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml index 577a2b50a..d023b4236 100644 --- a/.github/auto_assign.yml +++ b/.github/auto_assign.yml @@ -2,7 +2,7 @@ addReviewers: true # Set to true to add assignees to pull requests -addAssignees: false +addAssignees: true # A list of reviewers to be added to pull requests (GitHub user name) reviewers: diff --git a/.github/workflows/autoassign.yml b/.github/workflows/autoassign.yml index 2960b1772..6ab6507ad 100644 --- a/.github/workflows/autoassign.yml +++ b/.github/workflows/autoassign.yml @@ -7,4 +7,4 @@ jobs: add-reviews: runs-on: ubuntu-latest steps: - - uses: kentaro-m/auto-assign-action@v1.2.0 \ No newline at end of file + - uses: kentaro-m/auto-assign-action@v2.0.0 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a25740c8b..9780de023 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ name: Go Agent CI on: pull_request env: # Specifies which go version to run integration tests on - INTEGRATION_TESTS_GO_VERSION: 1.21.5 + INTEGRATION_TESTS_GO_VERSION: latest jobs: go-agent-v3: @@ -15,11 +15,13 @@ jobs: matrix: include: # Core Tests on 3 most recent major Go versions - - go-version: 1.19.0 + - go-version: 1.20.14 dirs: v3/newrelic,v3/internal,v3/examples - - go-version: 1.20.0 + - go-version: 1.21 dirs: v3/newrelic,v3/internal,v3/examples - - go-version: 1.21.0 + - go-version: latest + dirs: v3/newrelic,v3/internal,v3/examples + - go-version: 1.23rc2 dirs: v3/newrelic,v3/internal,v3/examples # Integration Tests on highest Supported Go Version @@ -107,11 +109,11 @@ jobs: matrix: include: # Core Tests on 3 most recent major Go versions - - go-version: 1.19.0 + - go-version: 1.20.14 dirs: v3/newrelic,v3/internal,v3/examples - - go-version: 1.20.0 + - go-version: 1.21 dirs: v3/newrelic,v3/internal,v3/examples - - go-version: 1.21.0 + - go-version: latest dirs: v3/newrelic,v3/internal,v3/examples steps: - name: Checkout Code diff --git a/Dockerfile b/Dockerfile index 566e372ad..6c9e425f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This file is used to build the docker image for the Go Agent's GitHub Action tests # Default go version if no arguments passed in -ARG GO_VERSION=1.19 +ARG GO_VERSION=1.20 # Takes in go version FROM golang:${GO_VERSION} as builder