From 459bc89dc35e50a738021b53b67caa23031c790d Mon Sep 17 00:00:00 2001 From: s-takehana Date: Sat, 10 Feb 2024 22:17:33 +0900 Subject: [PATCH] ci: update version in `tests.yml` --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d27048c..9886903 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,18 +12,18 @@ jobs: ci: strategy: matrix: - go: ['1.17', '1.18', '1.19', '1.20', '1.21'] + go: ['1.17', '1.18', '1.19', '1.20', '1.21', '1.22'] platform: [ubuntu-latest, macos-latest] # can not run in windows OS runs-on: ${{ matrix.platform }} steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Tests run: go test