Skip to content

Commit fb4a669

Browse files
authored
Merge branch 'main' into test-time-workflow
2 parents 66310a0 + c375dd4 commit fb4a669

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/asv-benchmarking-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
CONDA_ENV_FILE: ci/environment.yml
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828

.github/workflows/asv-benchmarking.yml

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

1919
steps:
2020
- name: Checkout uxarray
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
repository: UXARRAY/uxarray
2424
ref: main
@@ -29,7 +29,7 @@ jobs:
2929
git fetch --all --tags
3030
3131
- name: Checkout uxarray-asv
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
repository: UXARRAY/uxarray-asv
3535
persist-credentials: false

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
access_token: ${{ github.token }}
2828

2929
- name: checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
token: ${{ github.token }}
3333

.github/workflows/pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
if: github.repository == 'UXARRAY/uxarray'
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python
1313
uses: actions/[email protected]
1414
with:
@@ -32,7 +32,7 @@ jobs:
3232
permissions:
3333
id-token: write
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- name: Set up Python
3737
uses: actions/[email protected]
3838
with:

.github/workflows/upstream-dev-ci.yml

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

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
token: ${{ github.token }}
2828

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks # Some common pre-commit hooks
6-
rev: v5.0.0
6+
rev: v6.0.0
77
hooks:
88
- id: check-yaml # Checks the syntax of .yaml files.
99
args: [--allow-multiple-documents]
@@ -14,7 +14,7 @@ repos:
1414

1515
- repo: https://github.com/astral-sh/ruff-pre-commit
1616
# Ruff version.
17-
rev: v0.12.7
17+
rev: v0.12.8
1818
hooks:
1919
- id: ruff
2020
name: lint with ruff

0 commit comments

Comments
 (0)