Skip to content

Commit d805b37

Browse files
committed
Merge branch 'dev' into feature/code-quality-phase1
Resolved conflict in .github/workflows/lint.yml: - Kept ruff-based linting (replacing pylint and black) - Updated to actions/checkout@v5 to match dev branch
2 parents 70eb605 + 8f33eb7 commit d805b37

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2727
os: ["ubuntu-latest", "macos-latest", "windows-2022"]
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: actions/setup-python@v5
3131
id: python
3232
with:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout Code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Set up Python 3.8
2828
uses: actions/setup-python@v5
@@ -38,4 +38,4 @@ jobs:
3838
run: ruff check .
3939

4040
- name: Run ruff format check
41-
run: ruff format --check .
41+
run: ruff format --check .

.github/workflows/pip-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Install Python
2424
uses: actions/setup-python@v5

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v5
@@ -39,7 +39,7 @@ jobs:
3939
- build-release
4040
steps:
4141
- name: fetch dists
42-
uses: actions/download-artifact@v4
42+
uses: actions/download-artifact@v5
4343
with:
4444
name: solc-select-dists
4545
path: dist/
@@ -48,7 +48,7 @@ jobs:
4848
uses: pypa/[email protected]
4949

5050
- name: sign
51-
uses: sigstore/[email protected].0
51+
uses: sigstore/[email protected].1
5252
with:
5353
inputs: ./dist/*.tar.gz ./dist/*.whl
5454
release-signing-artifacts: true

0 commit comments

Comments
 (0)