Skip to content

Commit

Permalink
ci: Update repositories information before installing packages
Browse files Browse the repository at this point in the history
Otherwise we may try to download packages that do not exist anymore
  • Loading branch information
3v1n0 committed Jan 19, 2024
1 parent 5b1923e commit e65d08a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
go-version: '1.21'
cache: false
- name: Install PAM
run: sudo apt install -y libpam-dev
run: |
sudo apt-get update
sudo apt-get install -y libpam-dev
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down

0 comments on commit e65d08a

Please sign in to comment.