Skip to content

Commit 3c5d2bd

Browse files
authored
Merge branch 'main' into feature/various
2 parents 30f6175 + 2ef06f9 commit 3c5d2bd

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v6
2727
with:
28-
python-version: "3.14"
28+
python-version: "3.13"
2929
- name: Install dependencies
3030
run: pip install hatch
3131
- name: Run unit and integrations tests
@@ -34,7 +34,7 @@ jobs:
3434
run: hatch build
3535
# Upload artifacts for later use
3636
- name: Upload Artifacts
37-
uses: actions/upload-artifact@v6
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: dist
4040
path: dist/
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Check Semantic PR
2+
on:
3+
pull_request:
4+
types: [opened, edited, synchronize, reopened]
5+
pull_request_target:
6+
types: [opened, edited, synchronize, reopened]
7+
8+
jobs:
9+
check:
10+
uses: reqstool/.github/.github/workflows/check-semantic-pr.yml@main

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.14"
15+
python-version: "3.13"
1616
- name: Install pip package(s)
1717
run: pip install hatch
1818
- name: Run black formatter check

.github/workflows/publish_pypi_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
# Download artifacts from the build job
2727
- name: Download Artifacts
28-
uses: actions/download-artifact@v7
28+
uses: actions/download-artifact@v8
2929
with:
3030
name: dist
3131
path: dist

.github/workflows/publish_pypi_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Download artifacts from the build job
2525
- name: Download Artifacts
26-
uses: actions/download-artifact@v7
26+
uses: actions/download-artifact@v8
2727
with:
2828
name: dist
2929
path: dist

renovate.json5

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
extends: ["github>reqstool/.github//.github/renovate.json5"],
3+
}
4+

0 commit comments

Comments
 (0)