From 4a6e969883b7ce8abf6e76e677bbb847ce613430 Mon Sep 17 00:00:00 2001 From: Cole MacKenzie Date: Mon, 10 Jun 2024 13:56:59 -0700 Subject: [PATCH] ci: update github actions to latest versions - Upgrade actions/checkout to v4 - Upgrade actions/setup-go to v5 - Update go-versions to be `1.21` and `1.22` (two most recent versions) --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5f82df09..ea9052a8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.19', '1.20' ] + go: [ '1.21', '1.22' ] arch: [ 'amd64', '386' ] name: Go ${{ matrix.go }} GOARCH=${{ matrix.arch }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup go - uses: actions/setup-go@v1 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Set GOARCH