@@ -49,14 +49,14 @@ jobs:
49
49
LOCAL_ARTIFACT_NAME : sage-local-commit-${{ github.sha }}-tox-local-${{ matrix.tox_env }}-${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
50
50
LOGS_ARTIFACT_NAME : logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_env }}--${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
51
51
steps :
52
- - uses : actions/checkout@v2
52
+ - uses : actions/checkout@v3
53
53
- name : Select Xcode version
54
54
run : |
55
55
if [ ${{ matrix.xcode_version_factor }} != default ]; then sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version_factor }}.app; fi
56
56
- name : Install test prerequisites
57
57
run : |
58
58
brew install tox
59
- - uses : actions/download-artifact@v2
59
+ - uses : actions/download-artifact@v3
60
60
with :
61
61
path : sage-local-artifact
62
62
name : ${{ env.LOCAL_ARTIFACT_NAME }}
92
92
run : |
93
93
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
94
94
if : always()
95
- - uses : actions/upload-artifact@v1
95
+ - uses : actions/upload-artifact@v3
96
96
with :
97
97
path : artifacts
98
98
name : ${{ env.LOGS_ARTIFACT_NAME }}
@@ -110,7 +110,7 @@ jobs:
110
110
run : |
111
111
mkdir -p sage-local-artifact && (cd .tox/$TOX_ENV && rm -f "local/lib64" && tar -cf - $(pwd)) > sage-local-artifact/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar
112
112
if : contains(matrix.stage, '1')
113
- - uses : actions/upload-artifact@v2
113
+ - uses : actions/upload-artifact@v3
114
114
with :
115
115
path : sage-local-artifact/sage-${{ env.TOX_ENV }}-${{ matrix.stage }}.tar
116
116
name : ${{ env.LOCAL_ARTIFACT_NAME }}
@@ -120,7 +120,7 @@ jobs:
120
120
121
121
runs-on : ubuntu-latest
122
122
steps :
123
- - uses : actions/checkout@v2
123
+ - uses : actions/checkout@v3
124
124
with :
125
125
fetch-depth : 500
126
126
- name : fetch tags
@@ -140,7 +140,7 @@ jobs:
140
140
- name : make dist
141
141
run : |
142
142
./configure --enable-download-from-upstream-url && make dist
143
- - uses : actions/upload-artifact@v2
143
+ - uses : actions/upload-artifact@v3
144
144
with :
145
145
path : " dist/*.tar.gz"
146
146
name : dist
@@ -162,9 +162,9 @@ jobs:
162
162
TOX_ENV : local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
163
163
LOGS_ARTIFACT_NAME : logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}-xcode_${{ matrix.xcode_version_factor }}
164
164
steps :
165
- - uses : actions/checkout@v2
165
+ - uses : actions/checkout@v3
166
166
if : " !contains(matrix.tox_system_factor, 'nobootstrap')"
167
- - uses : actions/download-artifact@v2
167
+ - uses : actions/download-artifact@v3
168
168
with :
169
169
path : .
170
170
name : dist
@@ -191,7 +191,7 @@ jobs:
191
191
run : |
192
192
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
193
193
if : always()
194
- - uses : actions/upload-artifact@v1
194
+ - uses : actions/upload-artifact@v3
195
195
with :
196
196
path : artifacts
197
197
name : ${{ env.LOGS_ARTIFACT_NAME }}
0 commit comments