@@ -13,14 +13,14 @@ jobs:
1313 ruff :
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v5
16+ - uses : actions/checkout@v6
1717
1818 - name : Get Ruff version
1919 id : ruff-version
2020 run : echo "version=$(grep -Po '(?<=ruff==)[0-9]+\.[0-9]+\.[0-9]+' pyproject.toml)" >> $GITHUB_OUTPUT
2121
2222 - name : Run Ruff linter
23- uses : astral-sh/ruff-action@v3
23+ uses : astral-sh/ruff-action@v4.0.0
2424 with :
2525 version : ${{ steps.ruff-version.outputs.version }}
2626 pyright :
3131 python-version : [ '3.10', '3.x' ]
3232 name : pyright ${{ matrix.python-version }}
3333 steps :
34- - uses : actions/checkout@v5
34+ - uses : actions/checkout@v6
3535 - name : Get Pyright version
3636 id : pyright-version
3737 run : echo "version=$(grep -Po '(?<=pyright==)[0-9]+\.[0-9]+\.[0-9]+' pyproject.toml)" >> $GITHUB_OUTPUT
@@ -41,11 +41,11 @@ jobs:
4141 python-version : ${{ matrix.python-version }}
4242 cache : " pip" # Cache the pip packages to speed up the workflow
4343 - name : Set up UV
44- uses : astral-sh/setup-uv@v6
44+ uses : astral-sh/setup-uv@v8.2.0
4545 - name : Install Dependencies and Package
4646 run : uv sync --all-extras
4747 - name : Run Pyright
48- uses : jakebailey/pyright-action@v2
48+ uses : jakebailey/pyright-action@v3
4949 with :
5050 version : ${{ steps.pyright-version.outputs.version }}
5151 annotate : ${{ matrix.python-version != '3.x' }}
0 commit comments