Skip to content

Commit

Permalink
ci: ensure checkout action happens before setup-go (#15798)
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-rushakoff authored Apr 11, 2023
1 parent 4efd067 commit 300a466
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependencies-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20.3
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Dependency Review"
uses: actions/dependency-review-action@v3
- name: "Dependency audit"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.20.3
- uses: actions/checkout@v3
- run: make lint

0 comments on commit 300a466

Please sign in to comment.