Skip to content

Commit

Permalink
ci: Add apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
foxcpp committed Jan 21, 2024
1 parent db0874c commit 09c9486
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: "Install libpam"
run: sudo apt-get install -y libpam-dev
run: |
sudo apt-get update
sudo apt-get install -y libpam-dev
- uses: actions/cache@v2
with:
path: |
Expand Down

0 comments on commit 09c9486

Please sign in to comment.