Skip to content

Commit a10aaa7

Browse files
committed
Update ci action versions
1 parent a174fe7 commit a10aaa7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-20.04
99
name: "Check CHANGELOG"
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Install dependencies
1313
run: |
1414
sudo apt update
1515
sudo apt install --no-install-recommends jq
16-
- uses: lots0logs/gh-action-get-changed-files@2.1.4
16+
- uses: lots0logs/gh-action-get-changed-files@2.2.2
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
- name: Check changed files

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
matrix:
1515
python-version: [3.9, '3.10', '3.11', '3.12']
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Set up python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -40,7 +40,7 @@ jobs:
4040
tox -e decorations
4141
- name: Upload generated images
4242
if: ${{ always() && matrix.python-version == '3.11' }}
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: generated-images
4646
path: decoration_images/

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.x"
2121
- name: Install pypa/build
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build a binary wheel and a source tarball
2828
run: python3 -m build
2929
- name: Store the distribution packages
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: python-package-distributions
3333
path: dist/
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Download built artifacts
50-
uses: actions/download-artifact@v3
50+
uses: actions/download-artifact@v4
5151
with:
5252
name: python-package-distributions
5353
path: dist/
@@ -70,7 +70,7 @@ jobs:
7070

7171
steps:
7272
- name: Download all the dists
73-
uses: actions/download-artifact@v3
73+
uses: actions/download-artifact@v4
7474
with:
7575
name: python-package-distributions
7676
path: dist/

0 commit comments

Comments
 (0)