From ad756c693d2b96444d39f85d5c4545019176546f Mon Sep 17 00:00:00 2001 From: Ethan Zimbelman Date: Fri, 12 Jan 2024 21:12:05 -0800 Subject: [PATCH] chore(deps): update the golang version to 1.21 (#63) --- .github/workflows/tests.yml | 2 +- CHANGELOG.md | 1 + go.mod | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f26c576..e61dd21 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.20.x' + go-version: '1.21.x' - name: Install dependencies run: go get - name: Build binary diff --git a/CHANGELOG.md b/CHANGELOG.md index daef63a..af08fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Maintenance +- Bump the Golang version to the most recent version of 1.21 - Include instructions for cutting and versioning a release - Reduce frequency of dependabot updates to once a month - Include dependency checks for actions in GitHub Actions diff --git a/go.mod b/go.mod index 96d24b1..14ceeb4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/zimeg/emporia-time -go 1.20 +go 1.21 require ( github.com/AlecAivazis/survey/v2 v2.3.7