From 77a9ad82a76030a96cd2968086a9ee6dc4ee1c91 Mon Sep 17 00:00:00 2001 From: Tsvetoslav Dimov Date: Mon, 19 Feb 2024 17:10:27 +0000 Subject: [PATCH] ci: update github actions that depend on nodejs 16 --- .github/workflows/insights.yaml | 2 +- .github/workflows/quality.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/insights.yaml b/.github/workflows/insights.yaml index 15356a8..909d7f7 100644 --- a/.github/workflows/insights.yaml +++ b/.github/workflows/insights.yaml @@ -8,7 +8,7 @@ jobs: - name: Check out code uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 1.21 - name: Build diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 9d15e25..fbb90ac 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -17,7 +17,7 @@ jobs: with: go-version: 1.21 - name: Lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: v1.54.2 build: @@ -26,7 +26,7 @@ jobs: - name: Check out code uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 1.21 - name: Build @@ -37,13 +37,13 @@ jobs: - name: Check out code uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: 1.21 - name: Run tests run: make test - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: coverage.out token: ${{ secrets.CODECOV_TOKEN }}