From 78529fdd1fcd387805bb7583ace19d71a5a26333 Mon Sep 17 00:00:00 2001 From: tom twinkle Date: Tue, 26 Sep 2023 10:38:25 +0900 Subject: [PATCH 1/3] enhancement: go 1.21 --- aws/go.mod | 2 +- cerrors/go.mod | 2 +- envlookup/go.mod | 2 +- errgroup/go.mod | 2 +- osext/go.mod | 2 +- sql-escape/go.mod | 2 +- tspb_cast/go.mod | 2 +- ulid/go.mod | 2 +- utf8bom/go.mod | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/aws/go.mod b/aws/go.mod index 45622f43..6f88a32b 100644 --- a/aws/go.mod +++ b/aws/go.mod @@ -1,6 +1,6 @@ module github.com/88labs/go-utils/aws -go 1.20 +go 1.21 require ( github.com/88labs/go-utils/ulid v0.2.0 diff --git a/cerrors/go.mod b/cerrors/go.mod index 2f061352..4d6f7836 100644 --- a/cerrors/go.mod +++ b/cerrors/go.mod @@ -1,5 +1,5 @@ module github.com/88labs/go-utils/cerrors -go 1.20 +go 1.21 require golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 diff --git a/envlookup/go.mod b/envlookup/go.mod index c1822979..102fce10 100644 --- a/envlookup/go.mod +++ b/envlookup/go.mod @@ -1,6 +1,6 @@ module github.com/88labs/go-utils/envlookup -go 1.20 +go 1.21 require ( github.com/88labs/go-utils/aws v0.43.0 diff --git a/errgroup/go.mod b/errgroup/go.mod index d417672d..7b991f91 100644 --- a/errgroup/go.mod +++ b/errgroup/go.mod @@ -1,3 +1,3 @@ module github.com/88labs/go-utils/errgroup -go 1.20 +go 1.21 diff --git a/osext/go.mod b/osext/go.mod index 18fa2934..91a0900a 100644 --- a/osext/go.mod +++ b/osext/go.mod @@ -1,3 +1,3 @@ module github.com/88labs/go-utils/osext -go 1.20 +go 1.21 diff --git a/sql-escape/go.mod b/sql-escape/go.mod index 16fb8f3c..553541c9 100644 --- a/sql-escape/go.mod +++ b/sql-escape/go.mod @@ -1,3 +1,3 @@ module github.com/88labs/go-utils/sql-escape -go 1.20 +go 1.21 diff --git a/tspb_cast/go.mod b/tspb_cast/go.mod index 0ed9d3e4..5d792e16 100644 --- a/tspb_cast/go.mod +++ b/tspb_cast/go.mod @@ -1,5 +1,5 @@ module github.com/88labs/go-utils/tspb_cast -go 1.20 +go 1.21 require google.golang.org/protobuf v1.31.0 diff --git a/ulid/go.mod b/ulid/go.mod index 541200fa..b9ea3733 100644 --- a/ulid/go.mod +++ b/ulid/go.mod @@ -1,5 +1,5 @@ module github.com/88labs/go-utils/ulid -go 1.20 +go 1.21 require github.com/oklog/ulid/v2 v2.1.0 diff --git a/utf8bom/go.mod b/utf8bom/go.mod index b0902633..0eced852 100644 --- a/utf8bom/go.mod +++ b/utf8bom/go.mod @@ -1,6 +1,6 @@ module github.com/88labs/go-utils/utf8bom -go 1.20 +go 1.21 require ( github.com/bxcodec/faker/v3 v3.8.1 From 426aa2d1e9ed0207a9cf1ae103113680e49d46c4 Mon Sep 17 00:00:00 2001 From: tom twinkle Date: Tue, 26 Sep 2023 10:45:48 +0900 Subject: [PATCH 2/3] enhancement: go 1.21 github actions --- .github/CODEOWNERS | 3 ++- .github/dependabot.yml | 11 +++++++++++ .github/workflows/test-aws.yaml | 2 +- .github/workflows/test-cerrors.yaml | 2 +- .github/workflows/test-envlookup.yaml | 2 +- .github/workflows/test-utf8bom.yaml | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 512ac790..dfc5c7dc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -4,4 +4,5 @@ /sql-escape @KamikazeZirou /tspb_cast @KamikazeZirou /ulid @tomtwinkle -/envlookup @tomtwinkle \ No newline at end of file +/envlookup @tomtwinkle +/aws @tomtwinkle diff --git a/.github/dependabot.yml b/.github/dependabot.yml index acb81ee5..60a3fd4b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,16 @@ version: 2 updates: +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + time: "12:00" + timezone: Asia/Tokyo + groups: + dependencies: + patterns: + - "*" + open-pull-requests-limit: 10 - package-ecosystem: gomod directory: "/cerrors" schedule: diff --git a/.github/workflows/test-aws.yaml b/.github/workflows/test-aws.yaml index a98a3bbd..ae1b96b1 100644 --- a/.github/workflows/test-aws.yaml +++ b/.github/workflows/test-aws.yaml @@ -24,7 +24,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.20.x ] + go-version: [ 1.21.x ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} timeout-minutes: 5 diff --git a/.github/workflows/test-cerrors.yaml b/.github/workflows/test-cerrors.yaml index 523a9393..fb7f4458 100644 --- a/.github/workflows/test-cerrors.yaml +++ b/.github/workflows/test-cerrors.yaml @@ -20,7 +20,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.20.x ] + go-version: [ 1.21.x ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} timeout-minutes: 5 diff --git a/.github/workflows/test-envlookup.yaml b/.github/workflows/test-envlookup.yaml index 31273393..8be50476 100644 --- a/.github/workflows/test-envlookup.yaml +++ b/.github/workflows/test-envlookup.yaml @@ -20,7 +20,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.20.x ] + go-version: [ 1.21.x ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} timeout-minutes: 5 diff --git a/.github/workflows/test-utf8bom.yaml b/.github/workflows/test-utf8bom.yaml index f489540c..d601474e 100644 --- a/.github/workflows/test-utf8bom.yaml +++ b/.github/workflows/test-utf8bom.yaml @@ -20,7 +20,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.20.x ] + go-version: [ 1.21.x ] os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} timeout-minutes: 5 From b0a0b02fc83268ba2ec2a59ff0c6f03ff5bb19f8 Mon Sep 17 00:00:00 2001 From: tom twinkle Date: Tue, 26 Sep 2023 10:48:48 +0900 Subject: [PATCH 3/3] enhancement: remove github actions --- .github/dependabot.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 60a3fd4b..acb81ee5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,16 +1,5 @@ version: 2 updates: -- package-ecosystem: github-actions - directory: "/" - schedule: - interval: daily - time: "12:00" - timezone: Asia/Tokyo - groups: - dependencies: - patterns: - - "*" - open-pull-requests-limit: 10 - package-ecosystem: gomod directory: "/cerrors" schedule: