File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ jobs:
2222 env :
2323 PYTHON_VERSION : " 3.12"
2424 steps :
25- - uses : actions/checkout@v6
25+ - uses : actions/checkout@v7
2626
2727 - name : Set up Python ${{ env.PYTHON_VERSION }}
2828 uses : actions/setup-python@v6
2929 with :
3030 python-version : ${{ env.PYTHON_VERSION }}
3131
3232 - name : Cache dependencies
33- uses : actions/cache@v5
33+ uses : actions/cache@v6
3434 with :
3535 path : ~/.cache/pip
3636 key : ${{ runner.os }}-build-${{ hashFiles('pyproject.toml') }}
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
1515 matrix :
1616 python-version : ["3.12"]
1717 steps :
18- - uses : actions/checkout@v6
18+ - uses : actions/checkout@v7
1919
2020 - name : Set up Python ${{ matrix.python-version }}
2121 uses : actions/setup-python@v6
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424
2525 - name : Cache dependencies
26- uses : actions/cache@v5
26+ uses : actions/cache@v6
2727 with :
2828 path : ~/.cache/pip
2929 key : ${{ runner.os }}-docs-${{ hashFiles('pyproject.toml') }}
Original file line number Diff line number Diff line change 2525 - " 3.14"
2626 runs-on : " ubuntu-22.04"
2727 steps :
28- - uses : actions/checkout@v6
28+ - uses : actions/checkout@v7
2929 with :
3030 submodules : recursive
3131
3535 python-version : ${{ matrix.python-version }}
3636
3737 - name : Cache dependencies
38- uses : actions/cache@v5
38+ uses : actions/cache@v6
3939 with :
4040 path : ~/.cache/pip
4141 key : ${{ runner.os }}-samples-${{ hashFiles('**/pyproject.toml') }}
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ jobs:
1414 matrix :
1515 python-version : ["3.12"]
1616 steps :
17- - uses : actions/checkout@v6
17+ - uses : actions/checkout@v7
1818
1919 - name : Set up Python ${{ matrix.python-version }}
2020 uses : actions/setup-python@v6
2121 with :
2222 python-version : ${{ matrix.python-version }}
2323
2424 - name : Cache dependencies
25- uses : actions/cache@v5
25+ uses : actions/cache@v6
2626 with :
2727 path : ~/.cache/pip
2828 key : ${{ runner.os }}-lint-${{ hashFiles('pyproject.toml') }}
4444 pip install -e '.[lint]'
4545
4646 - name : Cache pre-commit
47- uses : actions/cache@v5
47+ uses : actions/cache@v6
4848 with :
4949 path : ~/.cache/pre-commit
5050 key : ${{ runner.os }}-prec-${{ hashFiles('.pre-commit-config.yaml') }}
Original file line number Diff line number Diff line change 3131 - " 3.14"
3232 runs-on : ${{ matrix.os }}
3333 steps :
34- - uses : actions/checkout@v6
34+ - uses : actions/checkout@v7
3535 with :
3636 submodules : recursive
3737
4141 python-version : ${{ matrix.python-version }}
4242
4343 - name : Cache dependencies
44- uses : actions/cache@v5
44+ uses : actions/cache@v6
4545 with :
4646 path : ~/.cache/pip
4747 key : ${{ runner.os }}-cli-${{ hashFiles('**/pyproject.toml') }}
Original file line number Diff line number Diff line change 2424 - " 3.14"
2525 runs-on : ${{ matrix.os }}
2626 steps :
27- - uses : actions/checkout@v6
27+ - uses : actions/checkout@v7
2828 with :
2929 submodules : recursive
3030
3434 python-version : ${{ matrix.python-version }}
3535
3636 - name : Cache dependencies
37- uses : actions/cache@v5
37+ uses : actions/cache@v6
3838 with :
3939 path : ~/.cache/pip
4040 key : ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}
8080 - " 3.10"
8181 runs-on : ${{ matrix.os }}
8282 steps :
83- - uses : actions/checkout@v6
83+ - uses : actions/checkout@v7
8484 with :
8585 submodules : recursive
8686
9090 python-version : ${{ matrix.python-version }}
9191
9292 - name : Cache dependencies
93- uses : actions/cache@v5
93+ uses : actions/cache@v6
9494 with :
9595 path : ~/.cache/pip
9696 key : ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}
Original file line number Diff line number Diff line change 2121 - " 3.14"
2222 runs-on : ${{ matrix.os }}
2323 steps :
24- - uses : actions/checkout@v6
24+ - uses : actions/checkout@v7
2525 with :
2626 submodules : recursive
2727
3131 python-version : ${{ matrix.python-version }}
3232
3333 - name : Cache dependencies
34- uses : actions/cache@v5
34+ uses : actions/cache@v6
3535 with :
3636 path : ~/.cache/pip
3737 key : ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}
Original file line number Diff line number Diff line change 2323 - " 3.14"
2424 runs-on : ${{ matrix.os }}
2525 steps :
26- - uses : actions/checkout@v6
26+ - uses : actions/checkout@v7
2727 with :
2828 submodules : recursive
2929
3333 python-version : ${{ matrix.python-version }}
3434
3535 - name : Cache dependencies
36- uses : actions/cache@v5
36+ uses : actions/cache@v6
3737 with :
3838 path : ~/.cache/pip
3939 key : ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}
6565 - " 3.14"
6666 runs-on : ${{ matrix.os }}
6767 steps :
68- - uses : actions/checkout@v6
68+ - uses : actions/checkout@v7
6969 with :
7070 submodules : recursive
7171
7575 python-version : ${{ matrix.python-version }}
7676
7777 - name : Cache dependencies
78- uses : actions/cache@v5
78+ uses : actions/cache@v6
7979 with :
8080 path : ~/.cache/pip
8181 key : ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}
Original file line number Diff line number Diff line change 1010 actionlint :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v4
13+ - uses : actions/checkout@v7
1414 - name : Download actionlint
1515 id : get_actionlint
1616 run : bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
You can’t perform that action at this time.
0 commit comments