Skip to content

Commit c097365

Browse files
committed
Bump workflow pins
1 parent 8fc3c5b commit c097365

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
if: github.repository_owner == 'dihm'
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Linting
19-
uses: chartboost/ruff-action@v1
19+
uses: astral-sh/ruff-action@v3
2020
with:
2121
src: "./src"

.github/workflows/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build and Release
22

33
on:
4-
create:
4+
push:
55
tags:
66
- 'v[0-9]+.[0-9]+.[0-9]+*'
77

@@ -15,12 +15,12 @@ jobs:
1515
if: github.repository_owner == 'dihm'
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Setup Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.12"
2424

2525
- name: Install Build Tools
2626
run: |
@@ -35,7 +35,7 @@ jobs:
3535
python -m build -w .
3636
3737
- name: Upload Artifact
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v6
3939
with:
4040
name: dist
4141
path: ./dist
@@ -50,7 +50,7 @@ jobs:
5050
contents: write
5151
steps:
5252
- name: Download Artifact
53-
uses: actions/download-artifact@v4
53+
uses: actions/download-artifact@v8
5454
with:
5555
name: dist
5656
path: ./dist
@@ -61,7 +61,7 @@ jobs:
6161
echo "VERSION=$VERSION" >> $GITHUB_ENV
6262
6363
- name: Create Github Release and Upload Release Asset
64-
uses: softprops/action-gh-release@v1
64+
uses: softprops/action-gh-release@v2
6565
with:
6666
tag_name: ${{ github.event.ref }}
6767
name: ${{ env.PACKAGE_NAME }} ${{ env.VERSION }}
@@ -81,7 +81,7 @@ jobs:
8181
id-token: write
8282
steps:
8383
- name: Download Artifact
84-
uses: actions/download-artifact@v4
84+
uses: actions/download-artifact@v8
8585
with:
8686
name: dist
8787
path: ./dist

0 commit comments

Comments
 (0)