Skip to content

Commit 8e121af

Browse files
committed
update action and auto versions
1 parent 1d33fb6 commit 8e121af

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os:
15-
- windows-2019
16-
- ubuntu-20.04
15+
- windows-latest
16+
- ubuntu-latest
1717
- macos-latest
1818
python:
1919
- 3.8
@@ -22,11 +22,11 @@ jobs:
2222
- "3.11"
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
with: # no need for the history
2727
fetch-depth: 1
2828
- name: Set up Python ${{ matrix.python }}
29-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v4
3030
with:
3131
python-version: ${{ matrix.python }}
3232

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
pypi-release:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212

1313
- name: Set up Python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.7
16+
python-version: 3.11
1717

1818
- name: Install build & twine
1919
run: python -m pip install build twine

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ on:
77
- master
88

99
env:
10-
# Pin to v10.28.0, which (as of 2021-05-25) is the latest version with assets
11-
AUTO_VERSION: v10.29.3
10+
AUTO_VERSION: v11.0.4
1211

1312
jobs:
1413
auto-release:
1514
runs-on: ubuntu-latest
1615
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1716
steps:
18-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1918

2019
- name: Prepare repository
2120
# Fetch full git history and tags
@@ -27,7 +26,7 @@ jobs:
2726
run: git config --local --unset http.https://github.com/.extraheader
2827

2928
- name: Set up Python
30-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v4
3130
with:
3231
python-version: 3.7
3332

0 commit comments

Comments
 (0)