Skip to content

Commit 337a91d

Browse files
Bump actions/upload-artifact from 4 to 5 (#4230)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5294af4 commit 337a91d

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/install-from-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
esmvaltool version 2>&1 | tee conda_install_linux_artifacts_python_${{ matrix.python-version }}/version.txt
4545
- name: Upload artifacts
4646
if: ${{ always() }} # upload artifacts even if fail
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: Conda_Install_Linux_python_${{ matrix.python-version }}
5050
path: conda_install_linux_artifacts_python_${{ matrix.python-version }}
@@ -83,7 +83,7 @@ jobs:
8383
# - run: esmvaltool version 2>&1 | tee conda_install_osx_artifacts_python_${{ matrix.python-version }}/version.txt
8484
# - name: Upload artifacts
8585
# if: ${{ always() }} # upload artifacts even if fail
86-
# uses: actions/upload-artifact@v4
86+
# uses: actions/upload-artifact@v5
8787
# with:
8888
# name: Conda_Install_OSX_python_${{ matrix.python-version }}
8989
# path: conda_install_osx_artifacts_python_${{ matrix.python-version }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- run: pytest -n 2 -m "not installation"
5959
- name: Upload artifacts
6060
if: ${{ always() }} # upload artifacts even if fail
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: Source_Install_Linux_python_${{ matrix.python-version }}
6464
path: source_install_linux_artifacts_python_${{ matrix.python-version }}

.github/workflows/install-from-source.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
esmvaltool version 2>&1 | tee source_install_linux_artifacts_python_${{ matrix.python-version }}/version.txt
4949
- name: Upload artifacts
5050
if: ${{ always() }} # upload artifacts even if fail
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v5
5252
with:
5353
name: Source_Install_Linux_python_${{ matrix.python-version }}
5454
path: source_install_linux_artifacts_python_${{ matrix.python-version }}
@@ -81,7 +81,7 @@ jobs:
8181
# - run: esmvaltool version 2>&1 | tee source_install_osx_artifacts_python_${{ matrix.python-version }}/version.txt
8282
# - name: Upload artifacts
8383
# if: ${{ always() }} # upload artifacts even if fail
84-
# uses: actions/upload-artifact@v4
84+
# uses: actions/upload-artifact@v5
8585
# with:
8686
# name: Source_Install_OSX_python_${{ matrix.python-version }}
8787
# path: source_install_osx_artifacts_python_${{ matrix.python-version }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: python tests/parse_pymon.py
5858
- name: Upload artifacts
5959
if: ${{ always() }} # upload artifacts even if fail
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v5
6161
with:
6262
name: Test_Linux_python_${{ matrix.python-version }}
6363
path: test_linux_artifacts_python_${{ matrix.python-version }}
@@ -108,7 +108,7 @@ jobs:
108108
run: python tests/parse_pymon.py
109109
- name: Upload artifacts
110110
if: ${{ always() }} # upload artifacts even if fail
111-
uses: actions/upload-artifact@v4
111+
uses: actions/upload-artifact@v5
112112
with:
113113
name: Test_OSX_python_${{ matrix.python-version }}
114114
path: test_osx_artifacts_python_${{ matrix.python-version }}

.github/workflows/test-development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: pytest -n 2 -m "not installation" 2>&1 | tee develop_test_linux_artifacts_python_${{ matrix.python-version }}/test_report.txt
6161
- name: Upload artifacts
6262
if: ${{ always() }} # upload artifacts even if fail
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: Develop_Test_Linux_python_${{ matrix.python-version }}
6666
path: develop_test_linux_artifacts_python_${{ matrix.python-version }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: pytest -n 2 -m "not installation" 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/test_report.txt
5959
- name: Upload artifacts
6060
if: ${{ always() }} # upload artifacts even if fail
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: Test_Linux_python_${{ matrix.python-version }}
6464
path: test_linux_artifacts_python_${{ matrix.python-version }}
@@ -110,7 +110,7 @@ jobs:
110110
run: pytest -n 2 -m "not installation" 2>&1 | tee test_osx_artifacts_python_${{ matrix.python-version }}/test_report.txt
111111
- name: Upload artifacts
112112
if: ${{ always() }} # upload artifacts even if fail
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
name: Test_OSX_python_${{ matrix.python-version }}
116116
path: test_osx_artifacts_python_${{ matrix.python-version }}

0 commit comments

Comments
 (0)