aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authormj-xmr <mjxmr@protonmail.com>2020-12-20 08:27:10 +0100
committermj-xmr <mjxmr@protonmail.com>2020-12-20 08:27:10 +0100
commite80f8d7ad8d4fbc4db6c06faaeae0d790e3a100e (patch)
tree923cf4140c2b614172a33472d9fc56fa35f5f3d4 /.github/workflows
parentMerge pull request #7151 (diff)
downloadmonero-e80f8d7ad8d4fbc4db6c06faaeae0d790e3a100e.tar.xz
apt update before installing
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/depends.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/depends.yml b/.github/workflows/depends.yml
index 85a05f673..3e0f048c7 100644
--- a/.github/workflows/depends.yml
+++ b/.github/workflows/depends.yml
@@ -60,7 +60,7 @@ jobs:
echo "Acquire::http::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
echo "Acquire::ftp::Timeout \"120\";" | sudo tee -a /etc/apt/apt.conf.d/80-custom
- name: install dependencies
- run: sudo apt -y install build-essential libtool cmake autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache ${{ matrix.toolchain.packages }}
+ run: sudo apt update; sudo apt -y install build-essential libtool cmake autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache ${{ matrix.toolchain.packages }}
- name: prepare apple-darwin11
if: ${{ matrix.toolchain.host == 'x86_64-apple-darwin11' }}
run: |