From 55040eab08064a5419bed2a004f258902db00b5e Mon Sep 17 00:00:00 2001 From: Matias <83959431+mativm02@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:23:17 -0300 Subject: [PATCH] Upgrading download-artifact and upload-artifact to fix CIs --- .github/workflows/ci-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index d6700a84..61a5a58e 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -35,7 +35,7 @@ jobs: if: ${{ contains(fromJSON('["push","pull_request"]'), github.event_name) }} run: | $(go env GOPATH)/bin/golangci-lint run --out-format checkstyle --timeout=300s --max-issues-per-linter=0 --max-same-issues=0 --issues-exit-code=0 --new-from-rev=origin/${{ github.base_ref }} ./... > golanglint.xml - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: golangcilint retention-days: 1 @@ -123,7 +123,7 @@ jobs: DB_VERSION: ${{ matrix.version }} run: task test-${{ matrix.storagetype }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: coverage retention-days: 1 @@ -142,11 +142,11 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - name: Download coverage artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: coverage - name: Download golangcilint artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: golangcilint - name: Check reports existence