Skip to content

Commit abb2aa6

Browse files
committed
Fix CI action
1 parent b233d6a commit abb2aa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
distribution: 'corretto'
3131
- name: Get GCC 12 for system header files
3232
run: |
33-
sudo apt install gcc-12
33+
sudo apt-get update && sudo apt-get install gcc-12
3434
- name: Install libcurl library for tests
3535
run: |
36-
sudo apt install libcurl4-openssl-dev
36+
sudo apt-get update && sudo apt-get install libcurl4-openssl-dev
3737
- name: Get libcurl source for tests
3838
run: |
3939
cd annotation-processor-test/src/test/resources/libcurl && git clone --depth 1 https://github.com/curl/curl.git

0 commit comments

Comments
 (0)