Skip to content

Commit c002776

Browse files
authored
apt-get update to try to fix this (#397)
* apt-get update to try to fix this * verify without this, the issue is not solved * go back to solution
1 parent 4f078ab commit c002776

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/lint-tests-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
with:
102102
go-version: 1.18
103103
- name: Set up arm64 cross compiler
104-
run: sudo apt-get -y install gcc-aarch64-linux-gnu
104+
run: |
105+
sudo apt-get -y update
106+
sudo apt-get -y install gcc-aarch64-linux-gnu
105107
- name: Checkout osxcross
106108
uses: actions/checkout@v2
107109
with:

0 commit comments

Comments
 (0)