Skip to content

Commit

Permalink
Moved actions/checkout step before actions/setup-go in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tukaelu committed Nov 7, 2023
1 parent dae67d2 commit 413c8d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
os: ['ubuntu-latest', 'macOS-latest', 'windows-latest']
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
Expand Down

0 comments on commit 413c8d2

Please sign in to comment.