Skip to content

Commit ab49d7b

Browse files
authored
Run apt-get update
Fixes Err:1 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 libnss3-tools amd64 2:3.49.1-1ubuntu1.6 404 Not Found [IP: 40.81.13.82 80] E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/universe/n/nss/libnss3-tools_3.49.1-1ubuntu1.6_amd64.deb 404 Not Found [IP: 40.81.13.82 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
1 parent dd2e52b commit ab49d7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/dockerimage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
MKCERT_VERSION: v1.4.3
2020
run: |
2121
set -x
22-
sudo apt-get install -y libnss3-tools
22+
sudo apt-get update && \
23+
sudo apt-get install -y libnss3-tools
2324
2425
curl https://github.com/FiloSottile/mkcert/releases/download/${MKCERT_VERSION}/mkcert-${MKCERT_VERSION}-linux-amd64 --location --output /tmp/mkcert
2526
chmod 744 /tmp/mkcert

0 commit comments

Comments
 (0)