Skip to content

Commit 126448d

Browse files
committed
Use newer solc version
1 parent 6f936a3 commit 126448d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/rust.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,19 +125,19 @@ jobs:
125125
uses: actions/cache@v4
126126
with:
127127
path: /home/runner/.solc
128-
key: solc-v0.8.25
128+
key: solc-v0.8.33
129129
restore-keys: solc-
130130
- name: Get Solc
131131
if: ${{ steps.cache-solc.outputs.cache-hit != 'true' }}
132132
uses: ./.github/actions/get-solc
133133
with:
134-
version: v0.8.25
134+
version: v0.8.33
135135
- name: Add Solc to PATH
136136
run: echo "/home/runner/.solc" >> $GITHUB_PATH
137137
- name: List the content of the Solc cache
138-
run: ls /home/runner/.solc/v0.8.25/solc-static-linux
138+
run: ls /home/runner/.solc/v0.8.33/solc-static-linux
139139
- name: Create a Solc symbolic link
140-
run: ln -sf /home/runner/.solc/v0.8.25/solc-static-linux /home/runner/.solc/solc
140+
run: ln -sf /home/runner/.solc/v0.8.33/solc-static-linux /home/runner/.solc/solc
141141
- name: Check if Solc is in PATH
142142
id: check-solc
143143
run: |
@@ -311,19 +311,19 @@ jobs:
311311
uses: actions/cache@v4
312312
with:
313313
path: /home/runner/.solc
314-
key: solc-v0.8.25
314+
key: solc-v0.8.33
315315
restore-keys: solc-
316316
- name: Get Solc
317317
if: ${{ steps.cache-solc.outputs.cache-hit != 'true' }}
318318
uses: ./.github/actions/get-solc
319319
with:
320-
version: v0.8.25
320+
version: v0.8.33
321321
- name: Add Solc to PATH
322322
run: echo "/home/runner/.solc" >> $GITHUB_PATH
323323
- name: List the content of the Solc cache
324-
run: ls /home/runner/.solc/v0.8.25/solc-static-linux
324+
run: ls /home/runner/.solc/v0.8.33/solc-static-linux
325325
- name: Create a Solc symbolic link
326-
run: ln -sf /home/runner/.solc/v0.8.25/solc-static-linux /home/runner/.solc/solc
326+
run: ln -sf /home/runner/.solc/v0.8.33/solc-static-linux /home/runner/.solc/solc
327327
- name: Check if Solc is in PATH
328328
run: which solc || echo "Solc not found in PATH"
329329
- name: Install Protoc

0 commit comments

Comments
 (0)