Skip to content

Commit 0ca8a3b

Browse files
chore(deps): Update dependencies for github (#421)
* chore(deps): Update dependencies for github * Update coverage.yaml Because we are installing Python 3.13, it should use Python 3.13 to calculate the code coverage. --------- Co-authored-by: rhatgadkar-goog <[email protected]>
1 parent c6ddd3f commit 0ca8a3b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/codeql.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ jobs:
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
52+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
5353
with:
5454
languages: ${{ matrix.language }}
5555

5656
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5757
# If this step fails, then you should remove it and run the build manually
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
59+
uses: github/codeql-action/autobuild@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
62+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
6363
with:
6464
category: "/language:${{matrix.language}}"

.github/workflows/coverage.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Python
3232
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3333
with:
34-
python-version: "3.10"
34+
python-version: "3.13"
3535

3636
- run: pip install nox coverage
3737

@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Calculate base code coverage
4444
run: |
45-
nox --sessions unit-3.10
45+
nox --sessions unit-3.13
4646
coverage report --show-missing
4747
export CUR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
4848
echo "CUR_COVER=$CUR_COVER" >> $GITHUB_ENV
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Calculate PR code coverage
5858
run: |
59-
nox --sessions unit-3.10
59+
nox --sessions unit-3.13
6060
coverage report --show-missing
6161
export PR_COVER=$(coverage report | awk '$1 == "TOTAL" {print $NF+0}')
6262
echo "PR_COVER=$PR_COVER" >> $GITHUB_ENV

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup Python
3333
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3434
with:
35-
python-version: "3.12"
35+
python-version: "3.13"
3636

3737
- name: Install nox
3838
run: pip install nox

.github/workflows/scorecard.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
persist-credentials: false
4141

4242
- name: "Run analysis"
43-
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
43+
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
4444
with:
4545
results_file: results.sarif
4646
results_format: sarif
@@ -57,14 +57,14 @@ jobs:
5757
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5858
# format to the repository Actions tab.
5959
- name: "Upload artifact"
60-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
60+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6161
with:
6262
name: SARIF file
6363
path: results.sarif
6464
retention-days: 5
6565

6666
# Upload the results to GitHub's code scanning dashboard.
6767
- name: "Upload to code-scanning"
68-
uses: github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
68+
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
6969
with:
7070
sarif_file: resultsFiltered.sarif

0 commit comments

Comments
 (0)