Skip to content

Commit 93f6362

Browse files
committed
up checkout version and disable artifacts
1 parent c588b0d commit 93f6362

6 files changed

+14
-14
lines changed

.github/workflows/build-and-deploy-on-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build and publish PyActiveStorage on PyPi
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Python 3.13

.github/workflows/create-condalock-file.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Create and verify conda lock file for latest Python
2121
runs-on: 'ubuntu-latest'
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/install-from-condalock-file.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
name: Linux Python ${{ matrix.python-version }}
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
3131
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/run-test-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
name: Linux Python ${{ matrix.python-version }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
name: Linux Python ${{ matrix.python-version }}
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- uses: conda-incubator/setup-miniconda@v3
@@ -55,7 +55,7 @@ jobs:
5555
fail-fast: false
5656
name: OSX Python ${{ matrix.python-version }}
5757
steps:
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 0
6161
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/test_s3_minio.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
name: Linux Python ${{ matrix.python-version }}
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232
- uses: conda-incubator/setup-miniconda@v3
@@ -90,10 +90,10 @@ jobs:
9090
- name: Stop minio object storage
9191
run: tests/s3_exploratory/minio_scripts/minio-stop
9292
if: always()
93-
- name: Upload HTML report artifact
94-
uses: actions/upload-artifact@v4
95-
with:
96-
name: html-report
97-
path: test-reports/
98-
overwrite: true
99-
if: always()
93+
#- name: Upload HTML report artifact
94+
# uses: actions/upload-artifact@v4
95+
# with:
96+
# name: html-report
97+
# path: test-reports/
98+
# overwrite: true
99+
# if: always()

0 commit comments

Comments
 (0)