Skip to content

Commit aa01cc6

Browse files
authored
try force updating apt (#1191)
1 parent 540e2f1 commit aa01cc6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/setup/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ runs:
2222
- name: install native libraries
2323
if: runner.os == 'Linux'
2424
shell: pwsh
25-
run: sudo apt-get install -qqy gcc-multilib g++-multilib
25+
run: |
26+
sudo apt-get update -qqy
27+
sudo apt-get install -qqy gcc-multilib g++-multilib
2628
2729
- name: build run.n
2830
working-directory: tools/run

0 commit comments

Comments
 (0)