Skip to content

Commit

Permalink
Run apt-get update prior to install.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz committed Dec 26, 2024
1 parent 3dddfdd commit 5babbbc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake valgrind
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev bmake valgrind
- name: Configure
run: |
cat /etc/os-release
Expand All @@ -20,7 +22,9 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake valgrind
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev bmake valgrind
- name: Configure
run: |
cat /etc/os-release
Expand All @@ -35,7 +39,9 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install dependencies
run: sudo apt-get install -y libcurl4-openssl-dev bmake pkg-config libbsd-dev
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev bmake pkg-config libbsd-dev
- name: Configure
run: |
cat /etc/os-release
Expand Down

0 comments on commit 5babbbc

Please sign in to comment.