File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ query-filters:
66 # annotations and PEP 695 generic bases used throughout the library.
77 - exclude :
88 id : py/unused-import
9+ # PEP 695 generic class syntax (Python 3.12+) can trigger CodeQL extraction
10+ # "Syntax error" diagnostics even though the code is valid; CI pins Python 3.12
11+ # via setup-python before init so autobuild sees the project interpreter.
912
1013paths :
1114 - litestar_auth
Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ jobs:
5555 SKIP : detect-aws-credentials,no-commit-to-branch
5656 steps :
5757 - name : Check out repository
58- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
58+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5959
6060 - name : Set uv Python install dir
6161 run : echo "UV_PYTHON_INSTALL_DIR=${RUNNER_TEMP}/uv-python-dir" >> "$GITHUB_ENV"
6262
6363 - name : Install uv
64- uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1 .0
64+ uses : astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2 .0
6565 with :
6666 python-version : " 3.12"
6767 enable-cache : true
@@ -117,12 +117,12 @@ jobs:
117117 - windows-2025-vs2026
118118 steps :
119119 - name : Check out repository
120- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
120+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
121121 with :
122122 fetch-depth : 0
123123
124124 - name : Install uv
125- uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1 .0
125+ uses : astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2 .0
126126 with :
127127 python-version : ${{ matrix.python-version }}
128128 enable-cache : true
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ jobs:
2929 timeout-minutes : 5
3030 steps :
3131 - name : Check out repository
32- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3333 with :
3434 token : " ${{ secrets.PERSONAL_ACCESS_TOKEN }}"
3535 fetch-depth : 0
3636
3737 - name : Install uv
38- uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1 .0
38+ uses : astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2 .0
3939 with :
4040 enable-cache : true
4141 cache-python : true
Original file line number Diff line number Diff line change 3131 timeout-minutes : 5
3232 steps :
3333 - name : Check out repository
34- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
34+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3535 with :
3636 token : " ${{ secrets.PERSONAL_ACCESS_TOKEN }}"
3737 fetch-depth : 0
Original file line number Diff line number Diff line change 1818 tag : ${{ steps.tag.outputs.tag }}
1919 steps :
2020 - name : Check out repository
21- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
21+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2222 with :
2323 ref : ${{ github.event.workflow_run.head_sha }}
2424 fetch-depth : 0
@@ -38,13 +38,13 @@ jobs:
3838 contents : read
3939 steps :
4040 - name : Check out repository
41- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
41+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
4242 with :
4343 ref : ${{ github.event.workflow_run.head_sha }}
4444 fetch-depth : 0
4545
4646 - name : Install uv
47- uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1 .0
47+ uses : astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2 .0
4848 with :
4949 enable-cache : true
5050 cache-python : true
@@ -160,7 +160,7 @@ jobs:
160160 id-token : write
161161 steps :
162162 - name : Check out repository
163- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
163+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
164164 with :
165165 ref : ${{ github.event.workflow_run.head_sha }}
166166 fetch-depth : 0
@@ -169,7 +169,7 @@ jobs:
169169 uses : actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
170170
171171 - name : Install uv
172- uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1 .0
172+ uses : astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2 .0
173173 with :
174174 enable-cache : true
175175 cache-python : true
Original file line number Diff line number Diff line change @@ -30,15 +30,20 @@ jobs:
3030 contents : read
3131 steps :
3232 - name : Check out repository
33- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
33+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
34+
35+ - name : Set up Python
36+ uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
37+ with :
38+ python-version : " 3.12"
3439
3540 - name : Initialize CodeQL
36- uses : github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
41+ uses : github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
3742 with :
3843 languages : python
3944 config-file : ./.github/codeql/codeql-config.yml
4045
4146 - name : Perform CodeQL Analysis
42- uses : github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
47+ uses : github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
4348 with :
4449 category : " /language:python"
Original file line number Diff line number Diff line change 1919 if : github.event.repository.fork == false
2020 steps :
2121 - name : Check out repository
22- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
22+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2323
2424 - name : Dependency review
2525 uses : actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ repos:
103103
104104 - repo : https://github.com/astral-sh/uv-pre-commit
105105 # uv version.
106- rev : 254dd0011fda0cd4bbb281ff135792b157e43e1f # frozen: 0.11.17
106+ rev : c665864e22f27255a10d82e14f8ccea6843fd65e # frozen: 0.11.19
107107 hooks :
108108 # Update the uv lockfile
109109 - id : uv-lock
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ dev = [
6565docs = [
6666 " mkdocstrings[python]>=1.0.4" ,
6767 " pymdown-extensions>=10.21.3" ,
68- " zensical>=0.0.43 " ,
68+ " zensical>=0.0.44 " ,
6969]
7070
7171[tool .ty .environment ]
You can’t perform that action at this time.
0 commit comments