Skip to content

Commit 39b7cd3

Browse files
committed
chore: fix workflows dependencies
1 parent cacfaf4 commit 39b7cd3

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
runs-on: "${{ vars.RUNS_ON || 'ubuntu-latest' }}"
3232
steps:
3333
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
34+
- name: Install Go # We need the go binary to be available to run some checks (formatter, gomod_salt, ...)
35+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
36+
with:
37+
go-version: stable
3438
- name: golangci-lint
3539
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
3640
with:
@@ -44,6 +48,8 @@ jobs:
4448
steps:
4549
- name: Checkout Actions Repository
4650
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
51+
- name: Install wget
52+
run: sudo apt install -y wget
4753
- name: Spell Check Repo
4854
uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0
4955
env:

0 commit comments

Comments
 (0)