Skip to content

Commit b2d4650

Browse files
committed
[Squash On Rebase]Fix the codeql workflow to run on dev/ branches. FileSync will also fix this next run.
1 parent 8b2c785 commit b2d4650

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ on:
2929
branches:
3030
- main
3131
- release/*
32+
- dev/*
3233
pull_request:
3334
branches:
3435
- main
3536
- release/*
37+
- dev/*
3638
paths-ignore:
3739
- '!**.c'
3840
- '!**.h'
@@ -179,7 +181,7 @@ jobs:
179181
return response
180182
181183
GITHUB_REPO = "sagiegurari/cargo-make"
182-
api_url = f"https://api.github.com/repos/{GITHUB_REPO}/releases/tags/0.37.9"
184+
api_url = f"https://api.github.com/repos/{GITHUB_REPO}/releases/tags/0.37.24"
183185
184186
response = get_response_with_retries(api_url)
185187
if response.status_code == 200:
@@ -214,7 +216,7 @@ jobs:
214216

215217
- name: Download cargo-make
216218
if: steps.cargo_make_cache.outputs.cache-hit != 'true'
217-
uses: robinraju/release-downloader@v1.10
219+
uses: robinraju/release-downloader@v1.11
218220
with:
219221
repository: 'sagiegurari/cargo-make'
220222
tag: '${{ steps.get_cargo_tool_details.outputs.cargo_make_version }}'

0 commit comments

Comments
 (0)