From 3bde86235823fcb42b6a970913bcabb74dfad5c9 Mon Sep 17 00:00:00 2001 From: Renat Mennanov Date: Wed, 20 Mar 2024 11:07:48 -0700 Subject: [PATCH] Update GH actions versions --- .github/workflows/coverage.yml | 8 ++++---- .github/workflows/linter.yml | 8 ++++---- .github/workflows/tests.yml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c2bc7dd..7578a80 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -8,11 +8,11 @@ jobs: name: Coverage runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Setup Go 1.20 - uses: actions/setup-go@v3 + - uses: actions/checkout@v4 + - name: Setup Go 1.22 + uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - name: Run tests with coverage run: go test -v -coverprofile=coverage.txt -covermode=atomic ./... - uses: codecov/codecov-action@v3 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 5107d9c..c038904 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -8,10 +8,10 @@ jobs: name: Linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Setup Go 1.20 - uses: actions/setup-go@v3 + - uses: actions/checkout@v4 + - name: Setup Go 1.22 + uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22' - name: Go vet run: go vet ./... diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 25cfc31..28765e3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21' ] + go-version: [ '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21', '1.22' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests