Skip to content

Commit 5d3ef7d

Browse files
Merge pull request #298 from NCAS-CMS/fix_s3_test_gha
Fix S3 Minio Github Actions tests
2 parents 2453050 + 7f2767c commit 5d3ef7d

File tree

8 files changed

+10
-28
lines changed

8 files changed

+10
-28
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# IMPORTANT: this permission is mandatory for trusted publishing on PyPI or Test PyPI
1717
id-token: write
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222
- name: Set up Python 3.14

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

Lines changed: 1 addition & 1 deletion
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@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
- uses: conda-incubator/setup-miniconda@v3

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

Lines changed: 1 addition & 1 deletion
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@v4
28+
- uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131
- uses: conda-incubator/setup-miniconda@v3

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,9 @@ jobs:
1919
fail-fast: false
2020
name: Linux Python ${{ matrix.python-version }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
25-
- uses: conda-incubator/setup-miniconda@v3
26-
with:
27-
python-version: ${{ matrix.python-version }}
28-
miniforge-version: "latest"
29-
use-mamba: true
30-
- name: Get conda and Python versions
31-
run: |
32-
conda --version
33-
python -V
3425
- name: Export proxy
3526
run: |
3627
echo 'USE_S3 = True' >> activestorage/config.py

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

Lines changed: 1 addition & 1 deletion
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@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/run-tests-condaforge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
name: Linux Python ${{ matrix.python-version }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
- uses: conda-incubator/setup-miniconda@v3
@@ -54,7 +54,7 @@ jobs:
5454
fail-fast: false
5555
name: OSX Python ${{ matrix.python-version }}
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
with:
5959
fetch-depth: 0
6060
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
name: Linux Python ${{ matrix.python-version }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
- uses: conda-incubator/setup-miniconda@v3
@@ -46,7 +46,7 @@ jobs:
4646
fail-fast: false
4747
name: OSX Python ${{ matrix.python-version }}
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
with:
5151
fetch-depth: 0
5252
- uses: conda-incubator/setup-miniconda@v3

.github/workflows/test_s3_minio.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,9 @@ jobs:
2323
fail-fast: false
2424
name: Linux Python ${{ matrix.python-version }}
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
29-
- uses: conda-incubator/setup-miniconda@v3
30-
with:
31-
python-version: ${{ matrix.python-version }}
32-
miniforge-version: "latest"
33-
use-mamba: true
34-
- name: Get conda and Python versions
35-
run: |
36-
conda --version
37-
python -V
3829
- name: Export proxy
3930
run: |
4031
echo 'USE_S3 = True' >> activestorage/config.py

0 commit comments

Comments
 (0)