Skip to content

Commit 2e3615a

Browse files
authored
Merge pull request #432 from benjeffery/fix-wheels2
Fix Actions versions
2 parents 842f022 + 3d28f99 commit 2e3615a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- run:
2525
name: Lint Python
2626
command: |
27-
ruff check --line-length 90 tsdate setup.py tests
27+
pre-commit run --all
2828
- save_cache:
29-
key: tsdate-{{ checksum "data/prior_1000df.bak" }}
29+
key: tsdate-{{ checksum "data/prior_1000df.bak" }}
3030
paths:
3131
- data/prior_1000df.bak
3232
- tsdate/prior_1000df.txt

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python -m build
3232
3333
- name: Upload
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: sdist-wheel
3737
path: dist
@@ -45,7 +45,7 @@ jobs:
4545
python: [3.8, 3.8, 3.9, "3.10", 3.11]
4646
steps:
4747
- name: Download wheels
48-
uses: actions/download-artifact@v4.1.7
48+
uses: actions/download-artifact@v4
4949
with:
5050
name: sdist-wheel
5151
- name: Set up Python ${{ matrix.python }}
@@ -71,7 +71,7 @@ jobs:
7171
wordsize: [64]
7272
steps:
7373
- name: Download wheels
74-
uses: actions/download-artifact@v4.1.7
74+
uses: actions/download-artifact@v4
7575
with:
7676
name: sdist-wheel
7777
- name: Set up Python ${{ matrix.python }}
@@ -96,7 +96,7 @@ jobs:
9696
python: [3.8, 3.9, "3.10", 3.11]
9797
steps:
9898
- name: Download wheels
99-
uses: actions/download-artifact@v4.1.7
99+
uses: actions/download-artifact@v4
100100
with:
101101
name: sdist-wheel
102102
- name: Set up Python
@@ -122,7 +122,7 @@ jobs:
122122
id-token: write
123123
steps:
124124
- name: Download all
125-
uses: actions/download-artifact@v4.1.7
125+
uses: actions/download-artifact@v4
126126
- name: Move to dist
127127
run: |
128128
mkdir dist

0 commit comments

Comments
 (0)