From 8b0bac9d538236580cddb8bbb81cf96d64042a7d Mon Sep 17 00:00:00 2001 From: fujiwara Date: Tue, 4 Jun 2024 10:08:15 +0900 Subject: [PATCH] bump Go and actions versions. --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4dfc4ee..bc2b8d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.22" - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: setup tools run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a42d73..5df21c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,19 +5,19 @@ jobs: strategy: matrix: go: - - "1.19" - - "1.20" + - "1.21" + - "1.22" name: Build runs-on: ubuntu-latest steps: - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build & Test run: |