Skip to content

Commit ab6a2b0

Browse files
Update actions/upload-artifact action to v3
1 parent 8c88721 commit ab6a2b0

10 files changed

+10
-10
lines changed

.github/workflows/linux-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
"${DOCKER}" \
124124
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
125125
- name: Upload the built artifact
126-
uses: actions/upload-artifact@v2
126+
uses: actions/upload-artifact@v3
127127
with:
128128
name: rustup-init-${{ matrix.target }}
129129
path: |

.github/workflows/linux-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
"${DOCKER}" \
118118
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
119119
- name: Upload the built artifact
120-
uses: actions/upload-artifact@v2
120+
uses: actions/upload-artifact@v3
121121
with:
122122
name: rustup-init-${{ matrix.target }}
123123
path: |

.github/workflows/linux-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
"${DOCKER}" \
147147
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
148148
- name: Upload the built artifact
149-
uses: actions/upload-artifact@v2
149+
uses: actions/upload-artifact@v3
150150
with:
151151
name: rustup-init-${{ matrix.target }}
152152
path: |

.github/workflows/macos-builds-on-all.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
exit 1
9494
fi
9595
- name: Upload the built artifact
96-
uses: actions/upload-artifact@v2
96+
uses: actions/upload-artifact@v3
9797
with:
9898
name: rustup-init-${{ matrix.target }}
9999
path: |

.github/workflows/windows-builds-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Run a full build
102102
run: bash ci/run.bash
103103
- name: Upload the built artifact
104-
uses: actions/upload-artifact@v2
104+
uses: actions/upload-artifact@v3
105105
with:
106106
name: rustup-init-${{ matrix.target }}
107107
path: |

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Run a full build
9797
run: bash ci/run.bash
9898
- name: Upload the built artifact
99-
uses: actions/upload-artifact@v2
99+
uses: actions/upload-artifact@v3
100100
with:
101101
name: rustup-init-${{ matrix.target }}
102102
path: |

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- name: Run a full build
9999
run: bash ci/run.bash
100100
- name: Upload the built artifact
101-
uses: actions/upload-artifact@v2
101+
uses: actions/upload-artifact@v3
102102
with:
103103
name: rustup-init-${{ matrix.target }}
104104
path: |

ci/actions-templates/linux-builds-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
"${DOCKER}" \
156156
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
157157
- name: Upload the built artifact
158-
uses: actions/upload-artifact@v2
158+
uses: actions/upload-artifact@v3
159159
with:
160160
name: rustup-init-${{ matrix.target }}
161161
path: |

ci/actions-templates/macos-builds-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
exit 1
9494
fi
9595
- name: Upload the built artifact
96-
uses: actions/upload-artifact@v2
96+
uses: actions/upload-artifact@v3
9797
with:
9898
name: rustup-init-${{ matrix.target }}
9999
path: |

ci/actions-templates/windows-builds-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- name: Run a full build
111111
run: bash ci/run.bash
112112
- name: Upload the built artifact
113-
uses: actions/upload-artifact@v2
113+
uses: actions/upload-artifact@v3
114114
with:
115115
name: rustup-init-${{ matrix.target }}
116116
path: |

0 commit comments

Comments
 (0)