Skip to content

Commit

Permalink
fix: In linter, run action checkout before action setup
Browse files Browse the repository at this point in the history
  • Loading branch information
x1m3 committed Dec 3, 2024
1 parent 6df1f05 commit 205def7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- name: Checkout code
uses: actions/checkout@v3
- name: Print branch
run: git branch --show-current
- name: Clear golangci-lint cache
Expand Down

0 comments on commit 205def7

Please sign in to comment.