Skip to content

Commit 896d640

Browse files
committed
fix(ci): exclude solidity/ from client workflow and upgrade artifact actions
- Add solidity/ to paths-ignore and path-filter exclusions Prevents client workflow from running on Solidity-only changes - Upgrade actions/upload-artifact from v3 to v4 - Upgrade actions/download-artifact from v3 to v4 Fixes auto-failure due to deprecated action versions
1 parent ae12ef3 commit 896d640

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/client.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- "docs/**"
1212
- "infrastructure/**"
1313
- "scripts/**"
14+
- "solidity/**"
1415
- "solidity-v1/**"
1516
- "token-stakedrop/**"
1617
pull_request:
@@ -45,7 +46,7 @@ jobs:
4546
with:
4647
filters: |
4748
path-filter:
48-
- './!((docs-v1|docs|infrastructure|scripts|solidity-v1|token-stakedrop)/**)'
49+
- './!((docs-v1|docs|infrastructure|scripts|solidity|solidity-v1|token-stakedrop)/**)'
4950
5051
electrum-integration-detect-changes:
5152
runs-on: ubuntu-latest
@@ -123,7 +124,7 @@ jobs:
123124
docker save --output /tmp/go-build-env-image.tar go-build-env
124125
125126
- name: Upload Docker Build Image
126-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
127128
with:
128129
name: go-build-env-image
129130
path: /tmp/go-build-env-image.tar
@@ -189,7 +190,7 @@ jobs:
189190
context: .
190191

191192
- name: Archive Client Binaries
192-
uses: actions/upload-artifact@v3
193+
uses: actions/upload-artifact@v4
193194
with:
194195
name: binaries
195196
path: |
@@ -309,7 +310,7 @@ jobs:
309310
uses: docker/setup-buildx-action@v2
310311

311312
- name: Download Docker Build Image
312-
uses: actions/download-artifact@v3
313+
uses: actions/download-artifact@v4
313314
with:
314315
name: go-build-env-image
315316
path: /tmp

0 commit comments

Comments
 (0)