Skip to content

Commit c779fe0

Browse files
authored
⬆️ update GitHub actions (#399)
1 parent 31ab28b commit c779fe0

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/_publish-code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
matrix:
1616
python-version: [ "3.11" ]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Cache dependencies
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: ~/.cache/pip
2929
key: ${{ runner.os }}-build-${{ hashFiles('pyproject.toml') }}

.github/workflows/_publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
matrix:
1616
python-version: ["3.11"]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Cache dependencies
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: ~/.cache/pip
2929
key: ${{ runner.os }}-docs-${{ hashFiles('pyproject.toml') }}

.github/workflows/_smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- "3.14"
2626
runs-on: "ubuntu-22.04"
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
submodules: recursive
3131

@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ matrix.python-version }}
3636

3737
- name: Cache dependencies
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/pip
4141
key: ${{ runner.os }}-samples-${{ hashFiles('**/pyproject.toml') }}

.github/workflows/_static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
matrix:
1515
python-version: ["3.11"]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

2424
- name: Cache dependencies
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-lint-${{ hashFiles('pyproject.toml') }}
@@ -44,7 +44,7 @@ jobs:
4444
pip install -e .[lint]
4545
4646
- name: Cache pre-commit
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.cache/pre-commit
5050
key: ${{ runner.os }}-prec-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/_test-integrations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- "3.14"
2222
runs-on: ${{ matrix.os }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
submodules: recursive
2727

@@ -31,7 +31,7 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232

3333
- name: Cache dependencies
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.cache/pip
3737
key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}

.github/workflows/_test-regressions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- "3.14"
2222
runs-on: ${{ matrix.os }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
submodules: recursive
2727

@@ -31,7 +31,7 @@ jobs:
3131
python-version: ${{ matrix.python-version }}
3232

3333
- name: Cache dependencies
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.cache/pip
3737
key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }}

.github/workflows/_test-units.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- "3.14"
2626
runs-on: ${{ matrix.os }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
submodules: recursive
3131

@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ matrix.python-version }}
3636

3737
- name: Cache dependencies
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/pip
4141
key: ${{ runner.os }}-test-${{ hashFiles('setup.cfg') }}

0 commit comments

Comments
 (0)