Skip to content

Commit f91593d

Browse files
Trim whitespace and update all actions/checkout to v6
1 parent 12c86c9 commit f91593d

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# ignore doctests
3939
pytest_opts: "-k pins/tests"
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242
- uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ matrix.python }}
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
if: ${{ !github.event.pull_request.head.repo.fork }}
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v6
8888
- uses: actions/setup-python@v4
8989
with:
9090
python-version: "3.10"
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-latest
113113
if: ${{ github.event.pull_request.head.repo.fork }}
114114
steps:
115-
- uses: actions/checkout@v4
115+
- uses: actions/checkout@v6
116116
- uses: actions/setup-python@v4
117117
with:
118118
python-version: "3.10"
@@ -131,7 +131,7 @@ jobs:
131131
name: "Build Docs"
132132
runs-on: ubuntu-latest
133133
steps:
134-
- uses: actions/checkout@v3
134+
- uses: actions/checkout@v6
135135
- uses: actions/setup-python@v4
136136
with:
137137
python-version: "3.10"
@@ -234,7 +234,7 @@ jobs:
234234
if: github.event_name == 'release'
235235
needs: [build-docs, tests]
236236
steps:
237-
- uses: actions/checkout@v4
237+
- uses: actions/checkout@v6
238238
- uses: actions/setup-python@v4
239239
with:
240240
python-version: "3.10"

.github/workflows/code-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
name: "Run pre-commit"
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- uses: actions/setup-python@v4
1818
- uses: pre-commit/action@v3.0.1
1919

2020
pyright:
2121
name: "Run Pyright"
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- uses: actions/setup-python@v4
2626
with:
2727
python-version: 3.13 # Use the maximum version supported by python-pins

.github/workflows/cross-compat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: "Check cross lib compatibility"
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626

2727
- name: Install libcurl on Linux
2828
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ universal = 1
8787
[tool.pytest.ini_options]
8888
markers = [
8989
"fs_file: mark test to only run on local filesystem",
90-
# NOTE: if you add a new marker here for a backend that requires credentials,
90+
# NOTE: if you add a new marker here for a backend that requires credentials,
9191
# be sure to exclude it from the test command in .github/workflows/ci.yml
92-
# in the "test-fork" job, to avoid failing tests where GitHub Actions
92+
# in the "test-fork" job, to avoid failing tests where GitHub Actions
9393
# secrets aren't available.
9494
"fs_s3: mark test to only run on AWS S3 bucket filesystem",
9595
"fs_gcs: mark test to only run on Google Cloud Storage bucket filesystem",

0 commit comments

Comments
 (0)