Skip to content

Commit

Permalink
Merge pull request #113 from TykTechnologies/fix/artifact-ci
Browse files Browse the repository at this point in the history
Upgrading download-artifact and upload-artifact to fix CIs
  • Loading branch information
mativm02 authored Oct 21, 2024
2 parents 24ad76c + 55040ea commit 5ba61b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5ba61b0

Please sign in to comment.