summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-03-09 15:02:59 +1300
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-03-09 15:02:59 +1300
commit0e2042fb3b7bda3ec4063678797c2ab40cd8c847 (patch)
treee54d89cad0d31260cbb8430a0c3cbaacfe1216e5
parentb6e34faae2f90a6f2fcd995d3ceb148ce0d433ab (diff)
downloadrack-0e2042fb3b7bda3ec4063678797c2ab40cd8c847.tar.gz
`apt-get update` before `apt-get install`.
-rw-r--r--.github/workflows/test-external.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test-external.yaml b/.github/workflows/test-external.yaml
index 8bb08027..cddf0434 100644
--- a/.github/workflows/test-external.yaml
+++ b/.github/workflows/test-external.yaml
@@ -27,7 +27,9 @@ jobs:
- name: Installing packages (ubuntu)
if: matrix.os == 'ubuntu-latest'
- run: sudo apt-get install libfcgi-dev libmemcached-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install libfcgi-dev libmemcached-dev
- name: Installing packages (macos)
if: matrix.os == 'macos-latest'