mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
run apt update before installing packages in golangci-lint (#8487)
This commit is contained in:
parent
c6698e242f
commit
96014148a8
1 changed files with 1 additions and 1 deletions
2
.github/workflows/golangci-lint.yml
vendored
2
.github/workflows/golangci-lint.yml
vendored
|
|
@ -43,7 +43,7 @@ jobs:
|
|||
- name: Run go lint
|
||||
run: |
|
||||
# The following packages are needed to build Fleet Desktop on Ubuntu.
|
||||
sudo apt install -y gcc libgtk-3-dev libayatana-appindicator3-dev
|
||||
sudo apt update -y && sudo apt install -y gcc libgtk-3-dev libayatana-appindicator3-dev
|
||||
# Don't forget to update
|
||||
# docs/Contributing/Testing-and-local-development.md when this
|
||||
# version changes
|
||||
|
|
|
|||
Loading…
Reference in a new issue