From 689b898fa88042734f5338c48134a436da62d749 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 01:24:45 +0000 Subject: [PATCH 1/2] chore(deps): bump github.com/codingsince1985/geo-golang Bumps [github.com/codingsince1985/geo-golang](https://github.com/codingsince1985/geo-golang) from 1.8.5 to 1.9.0. - [Release notes](https://github.com/codingsince1985/geo-golang/releases) - [Commits](https://github.com/codingsince1985/geo-golang/compare/v1.8.5...v1.9.0) --- updated-dependencies: - dependency-name: github.com/codingsince1985/geo-golang dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index ea2a1e7..9f566e3 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ module github.com/loginx/alfred-timein -go 1.25 +go 1.26.2 require ( - github.com/codingsince1985/geo-golang v1.8.5 + github.com/codingsince1985/geo-golang v1.9.0 github.com/cucumber/godog v0.15.1 github.com/ringsaturn/tzf v1.0.4 github.com/tkuchiki/go-timezone v0.2.3 diff --git a/go.sum b/go.sum index fdd0bea..dba5bf6 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/codingsince1985/geo-golang v1.8.5 h1:Zc681GO3xQUPFxHnaaIhNzl4rRdPZf3qt3iOOAAZMrM= -github.com/codingsince1985/geo-golang v1.8.5/go.mod h1:1EzFmdO4XUyijzbxQwT7CoE4v+7DTa3h4GlLo4CZq60= +github.com/codingsince1985/geo-golang v1.9.0 h1:nY5ish5pJJXU033IkiF0yvpjM8mD/qcweizCDgDE6hk= +github.com/codingsince1985/geo-golang v1.9.0/go.mod h1:SYo6Fv1HgVkst4eYim5aEhnVsRUTTK0ah4LN6l0l9rs= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/cucumber/gherkin/go/v26 v26.2.0 h1:EgIjePLWiPeslwIWmNQ3XHcypPsWAHoMCz/YEBKP4GI= github.com/cucumber/gherkin/go/v26 v26.2.0/go.mod h1:t2GAPnB8maCT4lkHL99BDCVNzCh1d7dBhCLt150Nr/0= @@ -74,8 +74,8 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= -github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/tidwall/cities v0.1.0 h1:CVNkmMf7NEC9Bvokf5GoSsArHCKRMTgLuubRTHnH0mE= github.com/tidwall/cities v0.1.0/go.mod h1:lV/HDp2gCcRcHJWqgt6Di54GiDrTZwh1aG2ZUPNbqa4= github.com/tidwall/geoindex v1.4.4/go.mod h1:rvVVNEFfkJVWGUdEfU8QaoOg/9zFX0h9ofWzA60mz1I= From e8e8541ec04cc80cc55cf9c4e331852ec41aee86 Mon Sep 17 00:00:00 2001 From: Xavier Spriet Date: Fri, 8 May 2026 12:51:35 -0400 Subject: [PATCH 2/2] fix(ci): align setup-go with go.mod version Use go-version-file so CI always matches each branch's go directive. Co-authored-by: Cursor --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8ba6d2..f136f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version-file: 'go.mod' - name: Run unit tests run: go test ./... - name: Run BDD tests @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version-file: 'go.mod' - name: Determine version id: version @@ -109,7 +109,7 @@ jobs: - name: Set up Go (for preseed tool) uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version-file: 'go.mod' - name: Generate changelog (for stable releases) if: startsWith(github.ref, 'refs/tags/v')