Skip to content

Commit 678b2cf

Browse files
committed
chore: isort. ci: Upgrade actions
1 parent 11d69a3 commit 678b2cf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
os: [macos-latest, windows-latest, ubuntu-latest]
1010
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', pypy-3.9]
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v4
1414
with:
1515
python-version: ${{ matrix.python-version }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99
- uses: actions/setup-python@v4
1010
with:
1111
python-version: '3.10'

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
7+
- uses: actions/checkout@v4
88
- uses: actions/setup-python@v4
99
with:
1010
python-version: '3.10'

csvkit/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import argparse
44
import bz2
5-
import datetime
65
import csv
6+
import datetime
77
import decimal
88
import gzip
99
import itertools

0 commit comments

Comments
 (0)