From f90eaa31469375f28fd0a74ba75fffdb6f5c8878 Mon Sep 17 00:00:00 2001 From: Eugene R Date: Tue, 10 Oct 2023 12:52:17 +0300 Subject: [PATCH] ci: update versions in GitHub Actions workflows (#73) --- .github/workflows/build.yml | 6 +++--- .github/workflows/golangci-lint.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6417e1..051c1b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,15 +13,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.18.x, 1.20.x] + go-version: [1.18.x, 1.21.x] steps: - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run coverage run: go test ./... -coverprofile=coverage.out -covermode=atomic diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 12218ea..2209ddf 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3