Skip to content

Commit 09d90f3

Browse files
authored
chore: update workflow actions
1 parent 5ef75b4 commit 09d90f3

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
working-directory: .
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Set up Python 3.12
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.12"
2323

2424
- name: Install uv
25-
uses: astral-sh/setup-uv@v5
25+
uses: astral-sh/setup-uv@v6
2626
with:
2727
enable-cache: true
2828
cache-dependency-glob: "pyproject.toml"

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v5
2525
- name: Set up Python
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: '3.x'
2929
- name: Install dependencies

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
working-directory: .
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
# use github python action instead of uv to take advantage of caching
3636
- name: Set up Python ${{ matrix.python }}
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ matrix.python }}
4040
cache: 'pip'
@@ -54,7 +54,7 @@ jobs:
5454
if: ${{ matrix.python == env.COV_PYTHON_VERSION }}
5555

5656
- name: Upload coverage to Codecov
57-
uses: codecov/codecov-action@v4
57+
uses: codecov/codecov-action@v5
5858
env:
5959
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6060
if: ${{ matrix.python == env.COV_PYTHON_VERSION }}

0 commit comments

Comments
 (0)