Skip to content

Commit 378a523

Browse files
committed
Add an apt-update step to the docker pull request check.
This stops it from getting an HTTP 404 while downloading dependencies if they have been updated since the image came out.
1 parent 3b406c6 commit 378a523

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pull-request-checks.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,9 @@ jobs:
365365
with:
366366
submodules: recursive
367367
- name: Download test dependencies
368-
run: sudo apt install openjdk-11-jdk-headless
368+
run: |
369+
sudo apt update
370+
sudo apt install openjdk-11-jdk-headless
369371
- name: Build docker image
370372
run: docker build -t cbmc .
371373
- name: Smoke test goto-cc

0 commit comments

Comments
 (0)