Skip to content

Commit e4b9bc9

Browse files
[UPDATE] Multiple version bumps
* includes #405 * includes #406 * includes #407 * includes (and supersedes) #409 Changes in file .github/workflows/Tests.yml: * codecov/codecov-action version bumps in CI Changes in file .github/workflows/codeql-analysis.yml: * code-ql version bumps in CI Changes in file .github/workflows/scorecard.yml: * upload-sarif version bump in CI Changes in file README.md: * includes MD059 fix from PR #409 for GHI #408 Changes in file package.json: * version bump for markdown-linter in CI
4 parents 11ed2a3 + 1d202ad + 7de78bb + 89ce3ed commit e4b9bc9

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/Tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
run: make -f Makefile test || exit 1 ;
205205
- name: Upload Python ${{ matrix.python-version }} test coverage to Codecov
206206
id: coverage-unittests-codecov-upload
207-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
207+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
208208
with:
209209
token: ${{ secrets.CODECOV_TOKEN }}
210210
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -218,7 +218,7 @@ jobs:
218218
fail_ci_if_error: false
219219
- name: Upload Python ${{ matrix.python-version }} second flag coverage to Codecov
220220
id: coverage-project-codecov-upload
221-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
221+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
222222
with:
223223
token: ${{ secrets.CODECOV_TOKEN }}
224224
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -492,7 +492,7 @@ jobs:
492492
run: make -f Makefile test-mat-doctests ;
493493
- name: Upload Python ${{ matrix.python-version }} doctest coverage to Codecov
494494
id: doctests-codecov-upload
495-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
495+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
496496
with:
497497
token: ${{ secrets.CODECOV_TOKEN }}
498498
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -924,7 +924,7 @@ jobs:
924924
shell: bash
925925
- name: Upload Python ${{ matrix.python-version }} integration coverage to Codecov
926926
id: integration-codecov-upload
927-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
927+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
928928
with:
929929
token: ${{ secrets.CODECOV_TOKEN }}
930930
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
47+
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
4848
with:
4949
languages: ${{ matrix.language }}
5050
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -55,7 +55,7 @@ jobs:
5555
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5656
# If this step fails, then you should remove it and run the build manually (see below)
5757
- name: Autobuild
58-
uses: github/codeql-action/autobuild@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
58+
uses: github/codeql-action/autobuild@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
5959

6060
# ℹ️ Command-line programs to run using the OS shell.
6161
# 📚 https://git.io/JvXDl
@@ -69,4 +69,4 @@ jobs:
6969
# make release
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
72+
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ jobs:
5353
retention-days: 5
5454
# Upload the results to GitHub's code scanning dashboard.
5555
- name: "Upload to code-scanning"
56-
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
56+
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
5757
with:
5858
sarif_file: results.sarif

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ for more information.
198198

199199
### Next steps
200200

201-
Next-steps and bug-fixes are tracked [Here](https://github.com/users/reactive-firewall/projects/1).
201+
Next steps and bug fixes are tracked by the
202+
[Multicast Project Board](https://github.com/users/reactive-firewall/projects/1).
202203

203204
## License
204205

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"devDependencies": {
33
"markdownlint": "^0.38.0",
4-
"markdownlint-cli": "^0.44.0"
4+
"markdownlint-cli": "^0.45.0"
55
},
66
"scripts": {
77
"lint:md": "command -v markdownlint >/dev/null && markdownlint --config .markdownlint.yaml --"

0 commit comments

Comments
 (0)