Skip to content

Commit 3f08efe

Browse files
committed
Update GitHub Actions versions
1 parent aed5a2b commit 3f08efe

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Set up Python
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: '3.x'
1717
- name: Install dependencies
@@ -20,12 +20,12 @@ jobs:
2020
pip install --upgrade setuptools wheel
2121
python setup.py sdist bdist_wheel
2222
- name: pypi-publish
23-
uses: pypa/gh-action-pypi-publish@v1.13.0
23+
uses: pypa/gh-action-pypi-publish@v1.14.0
2424
with:
2525
user: __token__
2626
password: ${{ secrets.PYPI_TOKEN }}
2727
- name: Upload packages
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v7
2929
with:
3030
name: dist
3131
path: dist

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: jdx/mise-action@v2
11+
- uses: actions/checkout@v6
12+
- uses: jdx/mise-action@v4
1313
- name: Lint
1414
run: mise lint
1515

@@ -31,11 +31,11 @@ jobs:
3131
- "pypy3.11"
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 2
3737
- name: Set up Python
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: "${{ matrix.python-version }}"
4141
- name: Install dependencies
@@ -48,7 +48,7 @@ jobs:
4848
tox run -f "$tox_factor" --skip-missing-interpreters true
4949
coverage xml -o ./coverage.xml
5050
- name: Upload coverage to Codecov
51-
uses: codecov/codecov-action@v4
51+
uses: codecov/codecov-action@v7
5252
with:
5353
fail_ci_if_error: false
5454
files: ./coverage.xml

0 commit comments

Comments
 (0)