Skip to content

Commit 2dc6e45

Browse files
chore(deps): Update dependencies for github (#498)
* chore(deps): Update dependencies for github * Update coverage.yaml --------- Co-authored-by: rhatgadkar-goog <rhatgadkar@google.com>
1 parent dc64eae commit 2dc6e45

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/codeql.yaml

Lines changed: 3 additions & 3 deletions
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@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
52+
uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
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@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
59+
uses: github/codeql-action/autobuild@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
62+
uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
6363
with:
6464
category: "/language:${{matrix.language}}"

.github/workflows/coverage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
pull-requests: write
3030
steps:
3131
- name: Setup Python
32-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
32+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3333
with:
34-
python-version: "3.13"
34+
python-version: "3.14"
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.13
45+
nox --sessions unit-3.14
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.13
59+
nox --sessions unit-3.14
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pull-requests: write
3131
steps:
3232
- name: Setup Python
33-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
33+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3434
with:
3535
python-version: "3.14"
3636

.github/workflows/scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ jobs:
6565

6666
# Upload the results to GitHub's code scanning dashboard.
6767
- name: "Upload to code-scanning"
68-
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
68+
uses: github/codeql-action/upload-sarif@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
6969
with:
7070
sarif_file: resultsFiltered.sarif

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
repository: ${{ github.event.pull_request.head.repo.full_name }}
4949

5050
- name: Setup Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
51+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
5252
with:
5353
python-version: ${{ matrix.python-version }}
5454

@@ -114,7 +114,7 @@ jobs:
114114
repository: ${{ github.event.pull_request.head.repo.full_name }}
115115

116116
- name: Setup Python ${{ matrix.python-version }}
117-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
117+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
118118
with:
119119
python-version: ${{ matrix.python-version }}
120120

0 commit comments

Comments
 (0)