Skip to content

Commit 46578f4

Browse files
[MERGE] Multiple Version bumps
Changes in file .github/workflows/Tests.yml: * version bumps Changes in file .github/workflows/codeql-analysis.yml: * version bumps Changes in file .github/workflows/makefile-lint.yml: * version bumps Changes in file .github/workflows/scorecard.yml: * version bumps
3 parents fe4f489 + b0590fd + 49689b4 commit 46578f4

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.github/workflows/Tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
make -f Makefile test || exit 1
218218
- name: Upload Python ${{ matrix.python-version }} test coverage to Codecov
219219
id: coverage-unittests-codecov-upload
220-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
220+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
221221
with:
222222
token: ${{ secrets.CODECOV_TOKEN }}
223223
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -234,7 +234,7 @@ jobs:
234234
fail_ci_if_error: false
235235
- name: Upload Python ${{ matrix.python-version }} second flag coverage to Codecov
236236
id: coverage-project-codecov-upload
237-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
237+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
238238
with:
239239
token: ${{ secrets.CODECOV_TOKEN }}
240240
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -473,7 +473,7 @@ jobs:
473473
run: make -f Makefile test-mat-doctests ;
474474
- name: Upload Python ${{ matrix.python-version }} doctest coverage to Codecov
475475
id: doctests-codecov-upload
476-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
476+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
477477
with:
478478
token: ${{ secrets.CODECOV_TOKEN }}
479479
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -895,7 +895,7 @@ jobs:
895895
shell: bash
896896
- name: Upload Python ${{ matrix.python-version }} integration coverage to Codecov
897897
id: integration-codecov-upload
898-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
898+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
899899
with:
900900
token: ${{ secrets.CODECOV_TOKEN }}
901901
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
@@ -50,7 +50,7 @@ jobs:
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL
53-
uses: github/codeql-action/init@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
53+
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5
5454
with:
5555
languages: ${{ matrix.language }}
5656
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -61,7 +61,7 @@ jobs:
6161
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6262
# If this step fails, then you should remove it and run the build manually (see below)
6363
- name: Autobuild
64-
uses: github/codeql-action/autobuild@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
64+
uses: github/codeql-action/autobuild@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5
6565

6666
# ℹ️ Command-line programs to run using the OS shell.
6767
# 📚 https://git.io/JvXDl
@@ -75,4 +75,4 @@ jobs:
7575
# make release
7676

7777
- name: Perform CodeQL Analysis
78-
uses: github/codeql-action/analyze@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
78+
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5

.github/workflows/makefile-lint.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ jobs:
5050
go version || { print_error "Go installation failed." 40 41 ; exit 126; }
5151
yamllint --version || { print_error "Yamllint installation failed." 40 41 ; exit 126; }
5252
pandoc --version || { print_error "Pandoc installation failed." 40 41 ; exit 126; }
53+
- name: Force Setup newer go
54+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
55+
with:
56+
go-version: 1.25
57+
check-latest: true
58+
id: go_force
5359
- name: Lint Workflow YAML
5460
if: ${{ success() }}
5561
env:

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ jobs:
5757
retention-days: 5
5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/upload-sarif@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
60+
uses: github/codeql-action/upload-sarif@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5
6161
with:
6262
sarif_file: results.sarif

0 commit comments

Comments
 (0)