Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Update versions of github actions used in lint_and_test #1926

Merged
merged 2 commits into from
May 3, 2024
Merged
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
9 changes: 5 additions & 4 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint package
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v5
with:
version: latest

Expand All @@ -33,7 +34,7 @@ jobs:
go tool cover -func coverage.txt

- name: Update coverage report
uses: ncruces/go-coverage-report@v0.2.3
uses: ncruces/go-coverage-report@v0.3.0
with:
report: 'true'
amend: 'true'
Expand Down