Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
go-version: 1.18
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check go mod
run: |
go mod tidy
Expand All @@ -26,7 +26,7 @@ jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: lint
uses: golangci/golangci-lint-action@v9.2.0
with:
Expand All @@ -36,7 +36,7 @@ jobs:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
Expand All @@ -48,7 +48,7 @@ jobs:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
Expand All @@ -63,7 +63,7 @@ jobs:
golang:
- 1.18
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
cover-${{ runner.os }}-go-

- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run tests with coverage
run: make coverage
Expand Down
Loading