Skip to content

Commit 9939f49

Browse files
committed
Update to actions/setup-python@v5 and actions/checkout@v4
1 parent a94fea3 commit 9939f49

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
if: startsWith(matrix.os, 'windows')
4545

4646
- name: Set up Python ${{ matrix.python-version }}
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050

.github/workflows/daily-test-build-numpy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: printenv
9797

9898
- name: Checkout TileDB-Py `main`
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100

101101
- name: Build TileDB-Py
102102
run: pip install --verbose .[test]
@@ -122,7 +122,7 @@ jobs:
122122
needs: test
123123
if: failure() || cancelled()
124124
steps:
125-
- uses: actions/checkout@v3
125+
- uses: actions/checkout@v4
126126
- name: Create Issue if Build Fails
127127
uses: TileDB-Inc/github-actions/open-issue@main
128128
with:

.github/workflows/daily-test-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
needs: test
8686
if: failure() || cancelled()
8787
steps:
88-
- uses: actions/checkout@v3
88+
- uses: actions/checkout@v4
8989
- name: Create Issue if Build Fails
9090
uses: TileDB-Inc/github-actions/open-issue@main
9191
with:

.github/workflows/format.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-python@v4
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
1111

1212
- name: Run pre-commit hooks on all files
1313
run: python -m pip -v install pre-commit && pre-commit run -a -v

0 commit comments

Comments
 (0)