Skip to content

Commit c14c175

Browse files
Merge branch 'main' into debug-win-py39-test-flake
2 parents 5b0f22e + a616180 commit c14c175

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
52+
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
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@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
59+
uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
62+
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
6363
with:
6464
category: "/language:${{matrix.language}}"

.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@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
68+
uses: github/codeql-action/upload-sarif@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
6969
with:
7070
sarif_file: resultsFiltered.sarif

requirements-test.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ pg8000==1.31.2
66
# It is supported for macos-12 runner:
77
# https://github.com/psycopg/psycopg2/issues/1737. But macos-12 runner is
88
# deprecated: https://github.com/actions/runner-images/issues/10721. So we
9-
# install psycopg 2.9.9 on Python 3.9 for macos-latest runner.
10-
psycopg2-binary==2.9.9; python_version == "3.9" and sys_platform == "darwin"
9+
# install psycopg <2.9.10 on Python 3.9 for macos-latest runner.
10+
psycopg2-binary<2.9.10; python_version == "3.9" and sys_platform == "darwin"
1111
psycopg2-binary==2.9.10; python_version != "3.9" or sys_platform != "darwin"
1212

13-
pytest==8.4.0
13+
pytest==8.4.1
1414

1515
pytest-asyncio==0.26.0; python_version == "3.9" and sys_platform == "win32"
1616
pytest-asyncio==1.0.0; python_version != "3.9" or sys_platform != "win32"
1717

18-
pytest-cov==6.1.1
18+
pytest-cov==6.2.1
1919
pytest-aiohttp==1.1.0
2020
SQLAlchemy[asyncio]==2.0.41
2121
aioresponses==0.7.8

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aiofiles==24.1.0
2-
aiohttp==3.12.12
3-
cryptography==45.0.4
2+
aiohttp==3.12.13
3+
cryptography==45.0.5
44
google-auth==2.40.3
55
requests==2.32.4
66
protobuf==6.31.1

0 commit comments

Comments
 (0)