Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
go test -race -coverprofile=coverage.out -covermode=atomic

- name: Cache test coverage report
uses: actions/cache@v3
uses: actions/cache@v5
id: restore-test-coverage-report
with:
path: ./cov-report.out
Expand All @@ -57,7 +57,7 @@ jobs:
# args: -no-fail -exclude-dir=\.*test\.* --verbose sonar -out=./gosec-report.json ./...

- name: Cache gosec report
uses: actions/cache@v3
uses: actions/cache@v5
id: restore-gosec-report
with:
path: ./gosec-report.json
Expand All @@ -76,19 +76,19 @@ jobs:
with:
go-version: 1.20.x

- uses: actions/cache@v3
- uses: actions/cache@v5
id: restore-gosec-report
with:
path: ./gosec-report.json
key: ${{ github.sha }}

- uses: actions/cache@v3
- uses: actions/cache@v5
id: restore-golangci-lint-report
with:
path: ./golangci-report.xml
key: ${{ github.sha }}

- uses: actions/cache@v3
- uses: actions/cache@v5
id: restore-test-coverage-report
with:
path: ./cov-report.out
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v3

- uses: actions/cache@v3
- uses: actions/cache@v5
id: restore-test-coverage-report
with:
path: ./cov-report.out
Expand Down
Loading