Skip to content

Commit

Permalink
ci: run apt update before installing packages
Browse files Browse the repository at this point in the history
We've seen some issues with 'coverage' job that failed
to install 'go' package. This is possibly caused by
outdated repository information in the CI image. Running
`apt update` could fix it.
  • Loading branch information
mkalcok committed Oct 24, 2024
1 parent e5fb7de commit e235126
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install -yqq golang
go install github.com/boumenot/[email protected]
Expand Down

0 comments on commit e235126

Please sign in to comment.