From a1090ddfe11f4e8ef1152b59fb1a3449e0b9233f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 12:36:00 +0000 Subject: [PATCH 01/16] chore(deps): bump xmidt-org/shared-go from 4.3.2 to 4.3.3 (#108) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.3.2 to 4.3.3. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/3bef4e75bb010c08cf96c3dee60f126a220b8073...db173bcc7387aae362434932a4f455d0bcea1d86) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17a2976..535df0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@3bef4e75bb010c08cf96c3dee60f126a220b8073 # v4.3.2 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@db173bcc7387aae362434932a4f455d0bcea1d86 # v4.3.3 with: tests-skip: true release-type: program From a237b8aae206f51d638cc110ae372a099c4d633f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 12:50:03 +0000 Subject: [PATCH 02/16] chore(deps): bump xmidt-org/shared-go from 4.3.3 to 4.4.0 (#109) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.3.3 to 4.4.0. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/db173bcc7387aae362434932a4f455d0bcea1d86...c9c75b3fd850c64594bcdc7181b4f7557675faed) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 535df0d..1a970ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@db173bcc7387aae362434932a4f455d0bcea1d86 # v4.3.3 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@c9c75b3fd850c64594bcdc7181b4f7557675faed # v4.4.0 with: tests-skip: true release-type: program From a370a8c67369f5165a5da07e3da1e62db703ba45 Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 20:04:20 -0700 Subject: [PATCH 03/16] chore:Enable yaml linting. --- .codecov.yml | 6 ++-- .github/dependabot.yml | 6 ++-- .github/workflows/ci.yml | 1 + .golangci.yaml | 2 +- .yamllint.yml | 40 +++++++++++++++++++++ deploy/docker-compose/docFiles/tr1d1um.yaml | 2 +- 6 files changed, 50 insertions(+), 7 deletions(-) create mode 100644 .yamllint.yml diff --git a/.codecov.yml b/.codecov.yml index 4c8e33d..3bbdb50 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,6 +1,6 @@ -## SPDX-FileCopyrightText: 2020 Comcast Cable Communications Management, LLC -## SPDX-License-Identifier: Apache-2.0 - +# SPDX-FileCopyrightText: 2020 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 +--- coverage: range: 50..80 round: down diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2fb3c9e..8764f8b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,13 +7,14 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - # Check for updates to GitHub Actions every week + # Check for updates to GitHub Actions every day interval: "daily" labels: - "dependencies" commit-message: prefix: "chore" include: "scope" + open-pull-requests-limit: 10 - package-ecosystem: gomod directory: / @@ -22,5 +23,6 @@ updates: labels: - "dependencies" commit-message: - prefix: "feat" + prefix: "chore" include: "scope" + open-pull-requests-limit: 10 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a970ea..dbb70d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,4 +28,5 @@ jobs: release-docker-latest: true release-docker-major: true release-docker-minor: true + yaml-lint-skip: false secrets: inherit diff --git a/.golangci.yaml b/.golangci.yaml index 864c369..7ffec7d 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -33,4 +33,4 @@ linters-settings: # Report non-wrapping error creation using fmt.Errorf errorf: false misspell: - locale: US \ No newline at end of file + locale: US diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..1ca1987 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,40 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 +--- + +extends: default + +ignore: [] + +rules: + braces: + level: warning + max-spaces-inside: 1 + brackets: + level: warning + max-spaces-inside: 1 + colons: + level: warning + max-spaces-after: -1 + commas: + level: warning + comments: disable + comments-indentation: disable + document-start: + present: true + empty-lines: + max: 2 + hyphens: + max-spaces-after: 1 + indentation: + level: error + indent-sequences: consistent + line-length: + level: warning + max: 90 + allow-non-breakable-words: true + allow-non-breakable-inline-mappings: true + truthy: + allowed-values: + - 'true' + - 'false' diff --git a/deploy/docker-compose/docFiles/tr1d1um.yaml b/deploy/docker-compose/docFiles/tr1d1um.yaml index 094380f..9308342 100644 --- a/deploy/docker-compose/docFiles/tr1d1um.yaml +++ b/deploy/docker-compose/docFiles/tr1d1um.yaml @@ -32,7 +32,7 @@ file: "stdout" level: "INFO" json: false - + webhooksEnabled: false start: From 0dc195134f46152e3f7023138630561768e9236e Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 20:18:42 -0700 Subject: [PATCH 04/16] chore:Disable truthy filter. --- .yamllint.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.yamllint.yml b/.yamllint.yml index 1ca1987..c2053c9 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -34,7 +34,4 @@ rules: max: 90 allow-non-breakable-words: true allow-non-breakable-inline-mappings: true - truthy: - allowed-values: - - 'true' - - 'false' + truthy: disable From 317f8d8cc8f9a77524846e8a4c8d4821ea38c28d Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 23:32:28 -0700 Subject: [PATCH 05/16] chore:Fix linting errors. --- .../docker-compose/docFiles/caduceator.yaml | 4 +- deploy/docker-compose/docFiles/prometheus.yml | 2 +- deploy/docker-compose/docFiles/tr1d1um.yaml | 128 +++++++++--------- 3 files changed, 67 insertions(+), 67 deletions(-) diff --git a/deploy/docker-compose/docFiles/caduceator.yaml b/deploy/docker-compose/docFiles/caduceator.yaml index ea969c8..f7499bb 100644 --- a/deploy/docker-compose/docFiles/caduceator.yaml +++ b/deploy/docker-compose/docFiles/caduceator.yaml @@ -1,5 +1,5 @@ -## SPDX-FileCopyrightText: 2020 Comcast Cable Communications Management, LLC -## SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2020 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 --- server: "caduceator-instance-123.example.com" diff --git a/deploy/docker-compose/docFiles/prometheus.yml b/deploy/docker-compose/docFiles/prometheus.yml index c1fec3f..0fb961f 100644 --- a/deploy/docker-compose/docFiles/prometheus.yml +++ b/deploy/docker-compose/docFiles/prometheus.yml @@ -85,4 +85,4 @@ scrape_configs: # scheme defaults to 'http'. static_configs: - - targets: ['caduceator:5003'] \ No newline at end of file + - targets: ['caduceator:5003'] diff --git a/deploy/docker-compose/docFiles/tr1d1um.yaml b/deploy/docker-compose/docFiles/tr1d1um.yaml index 9308342..2522ba4 100644 --- a/deploy/docker-compose/docFiles/tr1d1um.yaml +++ b/deploy/docker-compose/docFiles/tr1d1um.yaml @@ -1,78 +1,78 @@ ## SPDX-FileCopyrightText: 2020 Comcast Cable Communications Management, LLC ## SPDX-License-Identifier: Apache-2.0 --- - fqdn: tr1d1um - env: test - scheme: http - hooksScheme: http +fqdn: tr1d1um +env: test +scheme: http +hooksScheme: http - primary: - address: ":6100" - health: - address: ":6101" - options: - - "PayloadsOverZero" - - "PayloadsOverHundred" - - "PayloadsOverThousand" - - "PayloadsOverTenThousand" - readTimeout: "15s" - idleTimeout: "15s" - pprof: - address: ":6102" - readTimeout: "15s" - idleTimeout: "15s" - metric: - address: ":6103" - metricsOptions: - namespace: "webpa" - subsystem: "tr1d1um" - readTimeout: "15s" - idleTimeout: "15s" - log: - file: "stdout" - level: "INFO" - json: false +primary: + address: ":6100" +health: + address: ":6101" + options: + - "PayloadsOverZero" + - "PayloadsOverHundred" + - "PayloadsOverThousand" + - "PayloadsOverTenThousand" + readTimeout: "15s" + idleTimeout: "15s" +pprof: + address: ":6102" + readTimeout: "15s" + idleTimeout: "15s" +metric: + address: ":6103" + metricsOptions: + namespace: "webpa" + subsystem: "tr1d1um" + readTimeout: "15s" + idleTimeout: "15s" +log: + file: "stdout" + level: "INFO" + json: false - webhooksEnabled: false +webhooksEnabled: false - start: - duration: 1 - apiPath: tr1d1um:6100/hooks +start: + duration: 1 + apiPath: tr1d1um:6100/hooks - waitForDns: 0 +waitForDns: 0 - aws: - accessKey: "supbro" - secretKey: "nahbro" - env: local-dev - sns: - awsEndpoint: http://goaws:4100 - region: "us-east-1" - topicArn: arn:aws:sns:us-east-1:000000000000:xmidt-local-caduceus - urlPath: "/api/v2/aws/sns" +aws: + accessKey: "supbro" + secretKey: "nahbro" + env: local-dev + sns: + awsEndpoint: http://goaws:4100 + region: "us-east-1" + topicArn: arn:aws:sns:us-east-1:000000000000:xmidt-local-caduceus + urlPath: "/api/v2/aws/sns" - authHeader: ["dXNlcjpwYXNz"] +authHeader: ["dXNlcjpwYXNz"] - jwtValidator: - keys: - factory: - uri: "https://sat-prod.codebig2.net/keys/{keyId}" - purpose: 0 - updateInterval: 604800000000000 - capabilityCheck: - type: "monitor" - prefix: "x1:webpa:api:" - acceptAllMethod: "all" +jwtValidator: + keys: + factory: + uri: "https://sat-prod.codebig2.net/keys/{keyId}" + purpose: 0 + updateInterval: 604800000000000 +capabilityCheck: + type: "monitor" + prefix: "x1:webpa:api:" + acceptAllMethod: "all" # type: "enforce" # prefix: "prefix Here" # acceptAllMethod: "all" - targetURL: http://scytale:6300 - # WRPSource: "dns:tr1d1um.xmidt.comcast.net" - supportedServices: - - "config" - clientTimeout: "135s" - respWaitTimeout: "129s" - netDialerTimeout: "5s" - requestRetryInterval: "2s" - requestMaxRetries: 2 +targetURL: http://scytale:6300 +# WRPSource: "dns:tr1d1um.xmidt.comcast.net" +supportedServices: + - "config" +clientTimeout: "135s" +respWaitTimeout: "129s" +netDialerTimeout: "5s" +requestRetryInterval: "2s" +requestMaxRetries: 2 From 2037bf51dedd487793ee9b5afa93c21d7c37f6e8 Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 23:35:31 -0700 Subject: [PATCH 06/16] chore:remove the circular symlink reference. --- conf/caduceator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/caduceator.yaml b/conf/caduceator.yaml index 5ab8a18..f958a6f 120000 --- a/conf/caduceator.yaml +++ b/conf/caduceator.yaml @@ -1 +1 @@ -caduceator.yaml \ No newline at end of file +../caduceator.yaml \ No newline at end of file From bd320c70a63a0cef4ae4d5615e9a0df9d8ca1fc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 13:05:18 +0000 Subject: [PATCH 07/16] chore(deps): bump xmidt-org/shared-go from 4.4.0 to 4.4.1 (#111) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.0 to 4.4.1. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/c9c75b3fd850c64594bcdc7181b4f7557675faed...f15dd81338419cfdec19a9110510cf9bf3182ca6) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbb70d8..e9a7772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@c9c75b3fd850c64594bcdc7181b4f7557675faed # v4.4.0 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@f15dd81338419cfdec19a9110510cf9bf3182ca6 # v4.4.1 with: tests-skip: true release-type: program From 9e07f76dcfa517302b46d1eafb17e9ac8c7bed98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 12:33:44 +0000 Subject: [PATCH 08/16] chore(deps): bump xmidt-org/shared-go from 4.4.1 to 4.4.2 (#112) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.1 to 4.4.2. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/f15dd81338419cfdec19a9110510cf9bf3182ca6...a90d2f0138b1c7683b4209c5c41622deb68ae5b7) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9a7772..5a9dc4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@f15dd81338419cfdec19a9110510cf9bf3182ca6 # v4.4.1 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@a90d2f0138b1c7683b4209c5c41622deb68ae5b7 # v4.4.2 with: tests-skip: true release-type: program From 31cdf4395544f9e983b28d507b018816ea6c3c84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:25:47 +0000 Subject: [PATCH 09/16] chore(deps): bump xmidt-org/shared-go from 4.4.2 to 4.4.3 (#113) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.2 to 4.4.3. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/a90d2f0138b1c7683b4209c5c41622deb68ae5b7...dcd9299456a451f2b8a64ab980b4b761e653a96b) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a9dc4c..b4933da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@a90d2f0138b1c7683b4209c5c41622deb68ae5b7 # v4.4.2 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@dcd9299456a451f2b8a64ab980b4b761e653a96b # v4.4.3 with: tests-skip: true release-type: program From ad802f165e71d51f17d24e71a969eac351e8cf30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 12:59:54 +0000 Subject: [PATCH 10/16] chore(deps): bump xmidt-org/shared-go from 4.4.3 to 4.4.8 (#114) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.3 to 4.4.8. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/dcd9299456a451f2b8a64ab980b4b761e653a96b...ffc8c2d60d5cea02d9ebd149ac688b679debf356) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4933da..a0a3e0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@dcd9299456a451f2b8a64ab980b4b761e653a96b # v4.4.3 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@ffc8c2d60d5cea02d9ebd149ac688b679debf356 # v4.4.8 with: tests-skip: true release-type: program From 52dd2da53a31ad4a99102fe8e076a2033d34cb67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 12:25:53 +0000 Subject: [PATCH 11/16] chore(deps): bump xmidt-org/shared-go from 4.4.8 to 4.4.9 (#115) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.8 to 4.4.9. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/ffc8c2d60d5cea02d9ebd149ac688b679debf356...dba5224b851866142a89af515639b26a8bceb5f0) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0a3e0b..a9c9ee9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@ffc8c2d60d5cea02d9ebd149ac688b679debf356 # v4.4.8 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@dba5224b851866142a89af515639b26a8bceb5f0 # v4.4.9 with: tests-skip: true release-type: program From 212aa86cb81cc9e9d2f14ef23d2f512209d501ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 13:04:25 +0000 Subject: [PATCH 12/16] chore(deps): bump xmidt-org/shared-go from 4.4.9 to 4.4.10 (#116) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.9 to 4.4.10. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/dba5224b851866142a89af515639b26a8bceb5f0...d52bea35df8d25bee912f0161344cbc3a949a416) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9c9ee9..e8ae058 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@dba5224b851866142a89af515639b26a8bceb5f0 # v4.4.9 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@d52bea35df8d25bee912f0161344cbc3a949a416 # v4.4.10 with: tests-skip: true release-type: program From d1d6f9ca0c6f9878527ca1b6cf4fdd09b346ff61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 13:06:31 +0000 Subject: [PATCH 13/16] chore(deps): bump xmidt-org/shared-go from 4.4.10 to 4.4.11 (#117) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.10 to 4.4.11. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/d52bea35df8d25bee912f0161344cbc3a949a416...f5dfcd47cad7a26a650c9639ad1e2f99c254b0e5) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8ae058..6dcb1b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@d52bea35df8d25bee912f0161344cbc3a949a416 # v4.4.10 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@f5dfcd47cad7a26a650c9639ad1e2f99c254b0e5 # v4.4.11 with: tests-skip: true release-type: program From 490d6c669caf7fa7255e079c040f7d6ef02e0783 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 12:30:09 +0000 Subject: [PATCH 14/16] chore(deps): bump xmidt-org/shared-go from 4.4.11 to 4.4.12 (#118) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.11 to 4.4.12. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/f5dfcd47cad7a26a650c9639ad1e2f99c254b0e5...907f700ad9d8956de224d71e8ef6899c39654bcc) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dcb1b0..cf2c502 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@f5dfcd47cad7a26a650c9639ad1e2f99c254b0e5 # v4.4.11 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@907f700ad9d8956de224d71e8ef6899c39654bcc # v4.4.12 with: tests-skip: true release-type: program From 0669ad07c2573d2fcee3c390ead7c68327786557 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 13:01:11 +0000 Subject: [PATCH 15/16] chore(deps): bump xmidt-org/shared-go from 4.4.12 to 4.4.13 (#119) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.12 to 4.4.13. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/907f700ad9d8956de224d71e8ef6899c39654bcc...abf8204c8b3f3f6e965e3244927f529c5ed2d09f) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf2c502..ec8acd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@907f700ad9d8956de224d71e8ef6899c39654bcc # v4.4.12 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@abf8204c8b3f3f6e965e3244927f529c5ed2d09f # v4.4.13 with: tests-skip: true release-type: program From 0b77b6de1d15810957a75f6336c81071b6529109 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 12:37:41 +0000 Subject: [PATCH 16/16] chore(deps): bump xmidt-org/shared-go from 4.4.13 to 4.4.14 (#120) Bumps [xmidt-org/shared-go](https://github.com/xmidt-org/shared-go) from 4.4.13 to 4.4.14. - [Release notes](https://github.com/xmidt-org/shared-go/releases) - [Commits](https://github.com/xmidt-org/shared-go/compare/abf8204c8b3f3f6e965e3244927f529c5ed2d09f...c36ac2ad09d830fd07a1994264400c8c50e10302) --- updated-dependencies: - dependency-name: xmidt-org/shared-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec8acd8..a273c11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ on: jobs: ci: - uses: xmidt-org/shared-go/.github/workflows/ci.yml@abf8204c8b3f3f6e965e3244927f529c5ed2d09f # v4.4.13 + uses: xmidt-org/shared-go/.github/workflows/ci.yml@c36ac2ad09d830fd07a1994264400c8c50e10302 # v4.4.14 with: tests-skip: true release-type: program