From 93cd5e0d35ae7fed6884560097b304cec79f0fc1 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 5 Oct 2023 09:07:18 -0700 Subject: [PATCH] feat: bump minimum go version to 1.18 (#216) * feat: bump minimum go version to 1.18 * chore: bump go version in build.yml --------- Co-authored-by: Maas Lalani --- .github/workflows/build.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81c9e743..8ac0cd2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [~1.17, ^1] + go-version: [~1.18, ^1] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} env: diff --git a/go.mod b/go.mod index 423301da..094f648d 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/charmbracelet/lipgloss retract v0.7.0 // v0.7.0 introduces a bug that causes some apps to freeze. -go 1.17 +go 1.18 require ( github.com/mattn/go-runewidth v0.0.15