File tree Expand file tree Collapse file tree 5 files changed +444
-398
lines changed Expand file tree Collapse file tree 5 files changed +444
-398
lines changed Original file line number Diff line number Diff line change 77  main :
88    runs-on : ubuntu-latest 
99    steps :
10-       - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683   #  v4.2.2 
11-       - uses : astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb   #  v6.1 .0
10+       - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8   #  v5.0.0 
11+       - uses : astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1   #  v6.5 .0
1212        with :
1313          enable-cache : true 
1414          prune-cache : false 
1515      - uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065  #  v5.6.0
1616        id : setup-python 
1717        with :
1818          python-version-file : pyproject.toml 
19-       - uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684   #  v4.2.3 
19+       - uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809   #  v4.2.4 
2020        with :
2121          path : ~/.cache/pre-commit 
2222          key : pre-commit|${{ hashFiles('pyproject.toml', '.pre-commit-config.yaml') }} 
Original file line number Diff line number Diff line change 66  build :
77    runs-on : ubuntu-latest 
88    steps :
9-       - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683   #  v4.2.2 
10-       - uses : astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb   #  v6.1 .0
9+       - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8   #  v5.0.0 
10+       - uses : astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1   #  v6.5 .0
1111        with :
1212          enable-cache : true 
1313          prune-cache : false 
2525    permissions :
2626      contents : write 
2727    steps :
28-       - uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093   #  v4.3 .0
28+       - uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0   #  v5.0 .0
2929      - name : create release 
3030        run : gh release create --draft --repo ${{ github.repository }} ${{ github.ref_name }} artifact/* 
3131        env :
3939    permissions :
4040      id-token : write 
4141    steps :
42-       - uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093   #  v4.3 .0
42+       - uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0   #  v5.0 .0
4343      - uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc  #  v1.12.4
4444        with :
4545          packages-dir : artifact/ 
Original file line number Diff line number Diff line change 2424          - {name: Minimum Versions, python: '3.13', tox: tests-min} 
2525          - {name: Development Versions, python: '3.10', tox: tests-dev} 
2626    steps :
27-       - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683   #  v4.2.2 
28-       - uses : astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb   #  v6.1 .0
27+       - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8   #  v5.0.0 
28+       - uses : astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1   #  v6.5 .0
2929        with :
3030          enable-cache : true 
3131          prune-cache : false 
@@ -36,16 +36,16 @@ jobs:
3636  typing :
3737    runs-on : ubuntu-latest 
3838    steps :
39-       - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683   #  v4.2.2 
40-       - uses : astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb   #  v6.1 .0
39+       - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8   #  v5.0.0 
40+       - uses : astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1   #  v6.5 .0
4141        with :
4242          enable-cache : true 
4343          prune-cache : false 
4444      - uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065  #  v5.6.0
4545        with :
4646          python-version-file : pyproject.toml 
4747      - name : cache mypy 
48-         uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684   #  v4.2.3 
48+         uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809   #  v4.2.4 
4949        with :
5050          path : ./.mypy_cache 
5151          key : mypy|${{ hashFiles('pyproject.toml') }} 
Original file line number Diff line number Diff line change 11repos :
22  - repo : https://github.com/astral-sh/ruff-pre-commit 
3-     rev : 9aeda5d1f4bbd212c557da1ea78eca9e8c829e19   #  frozen: v0.11.13 
3+     rev : 54a455f7ce629598b7535ff828fd5fb796f4b83f   #  frozen: v0.12.9 
44    hooks :
55      - id : ruff 
66      - id : ruff-format 
77  - repo : https://github.com/astral-sh/uv-pre-commit 
8-     rev : a621b109bab2e7e832d98c88fd3e83399f4e6657   #  frozen: 0.7 .12
8+     rev : f9572a6b06237978e1d52fad0ae55bac5e36da26   #  frozen: 0.8 .12
99    hooks :
1010      - id : uv-lock 
1111  - repo : https://github.com/pre-commit/pre-commit-hooks 
12-     rev : cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b   #  frozen: v5 .0.0
12+     rev : 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c   #  frozen: v6 .0.0
1313    hooks :
1414      - id : check-merge-conflict 
1515      - id : debug-statements 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments