Skip to content

Commit 91ba309

Browse files
remyleoneCopilot
andauthored
chore: fix workflows dependencies (#5416)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 7bb17c4 commit 91ba309

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/lint.yml

Lines changed: 8 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,10 @@ jobs:
4448
steps:
4549
- name: Checkout Actions Repository
4650
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
51+
- name: Install wget
52+
run: |
53+
sudo apt-get update
54+
sudo apt-get install -y --no-install-recommends wget
4755
- name: Spell Check Repo
4856
uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0
4957
env:

0 commit comments

Comments
 (0)