Skip to content

Commit 7fa30e6

Browse files
committed
switch to artifacts@v4
1 parent 209ae4c commit 7fa30e6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- name: make dist
9696
run: |
9797
./configure --enable-download-from-upstream-url && make dist
98-
- uses: actions/upload-artifact@v3
98+
- uses: actions/upload-artifact@v4
9999
with:
100100
path: "dist/*.tar.gz"
101101
name: dist
@@ -119,7 +119,7 @@ jobs:
119119
steps:
120120
- uses: actions/checkout@v4
121121
if: "!contains(matrix.tox_system_factor, 'nobootstrap')"
122-
- uses: actions/download-artifact@v3
122+
- uses: actions/download-artifact@v4
123123
with:
124124
path: .
125125
name: dist
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
149149
if: always()
150-
- uses: actions/upload-artifact@v3
150+
- uses: actions/upload-artifact@v4
151151
with:
152152
path: artifacts
153153
name: ${{ env.LOGS_ARTIFACT_NAME }}

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
ref: ${{ inputs.sage_ref }}
171171
fetch-depth: 10000
172172
- name: Download upstream artifact
173-
uses: actions/download-artifact@v3
173+
uses: actions/download-artifact@v4
174174
with:
175175
path: upstream
176176
name: ${{ inputs.upstream_artifact }}
@@ -260,7 +260,7 @@ jobs:
260260
cp -r .tox/$TOX_ENV/* "artifacts/$LOGS_ARTIFACT_NAME"
261261
rm -rf "artifacts/$LOGS_ARTIFACT_NAME"/{bin,lib,pyvenv.cfg}
262262
if: always()
263-
- uses: actions/upload-artifact@v3
263+
- uses: actions/upload-artifact@v4
264264
with:
265265
path: artifacts
266266
name: ${{ env.LOGS_ARTIFACT_NAME }}

.github/workflows/macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
"${{ steps.python.outputs.python-path }}" -m pip install pipx
9393
- name: Download upstream artifact
94-
uses: actions/download-artifact@v3
94+
uses: actions/download-artifact@v4
9595
with:
9696
path: upstream
9797
name: ${{ inputs.upstream_artifact }}
@@ -108,7 +108,7 @@ jobs:
108108
GH_TOKEN: ${{ github.token }}
109109
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
110110

111-
- uses: actions/download-artifact@v3
111+
- uses: actions/download-artifact@v4
112112
with:
113113
path: sage-local-artifact
114114
name: ${{ env.LOCAL_ARTIFACT_NAME }}
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
149149
if: always()
150-
- uses: actions/upload-artifact@v3
150+
- uses: actions/upload-artifact@v4
151151
with:
152152
path: artifacts
153153
name: ${{ env.LOGS_ARTIFACT_NAME }}
@@ -165,7 +165,7 @@ jobs:
165165
run: |
166166
mkdir -p sage-local-artifact && (cd .tox/$TOX_ENV && rm -f "local/lib64" && tar -cf - $(pwd)) > sage-local-artifact/sage-${{ env.TOX_ENV }}-${{ inputs.stage }}.tar
167167
if: contains(inputs.stage, '1')
168-
- uses: actions/upload-artifact@v3
168+
- uses: actions/upload-artifact@v4
169169
with:
170170
path: sage-local-artifact/sage-${{ env.TOX_ENV }}-${{ inputs.stage }}.tar
171171
name: ${{ env.LOCAL_ARTIFACT_NAME }}

0 commit comments

Comments
 (0)