From 61231fe893ac61bc8ae633fee72ba80357944b57 Mon Sep 17 00:00:00 2001 From: Carlos Roman Date: Wed, 5 Feb 2025 11:50:47 +0000 Subject: [PATCH 1/3] Updating team ownership to agent-metric-pipelines --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a58883d7..a0554ded 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,7 +2,7 @@ # Rules are matched bottom-to-top, so one team can own subdirectories # and another team can own the rest of the directory. -* @Datadog/agent-metrics-logs +* @Datadog/agent-metric-pipelines # Documentation *.md @DataDog/documentation From cfc7457ad0928a673335906054609205c9b5de5f Mon Sep 17 00:00:00 2001 From: Carlos Roman Date: Wed, 5 Feb 2025 11:54:59 +0000 Subject: [PATCH 2/3] Adding Go 1.23 to job maxtix --- .circleci/config.yml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad38d70e..75fc2a3d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,6 @@ -# We use github actions to test the code on windows and linux amd64. Circleci is used for linux arm64. +--- +# We use github actions to test the code on windows and linux amd64. +# Circleci is used for linux arm64. # version: 2.1 @@ -9,7 +11,7 @@ executors: linux_arm64: description: "arm64" machine: - image: ubuntu-2204:2023.07.2 + image: ubuntu-2404:current resource_class: arm.medium commands: @@ -72,4 +74,15 @@ workflows: - tests_arm64: matrix: parameters: - go-version: ["1.13", "1.14", "1.15", "1.16", "1.17", "1.18", "1.19", "1.20", "1.21.5"] + go-version: + - "1.13" + - "1.14" + - "1.15" + - "1.16" + - "1.17" + - "1.18" + - "1.19" + - "1.20.14" + - "1.21.13" + - "1.22.12" + - "1.23.6" From 4b3c4b85aa4797990e552cdc5e34fe05bee1b8a3 Mon Sep 17 00:00:00 2001 From: Carlos Roman Date: Wed, 5 Feb 2025 12:54:55 +0000 Subject: [PATCH 3/3] Adding missing Golang version to github workflow --- .github/workflows/datadog-go.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/datadog-go.yaml b/.github/workflows/datadog-go.yaml index 4f759edb..dacdaffd 100644 --- a/.github/workflows/datadog-go.yaml +++ b/.github/workflows/datadog-go.yaml @@ -18,6 +18,8 @@ jobs: - 1.19 - "1.20" - 1.21 + - 1.22 + - 1.23 runs-on: - macos-latest - ubuntu-latest