Skip to content

Commit eeb11a0

Browse files
committed
chore: bump upload-artifact to v4
[actions/upload-artifact](https://github.com/actions/upload-artifact) v3 has been deprecated on November 30, 2024. This bumps to v4. > Breaking Changes > > On self hosted runners, additional firewall rules may be required. > > Uploading to the same named Artifact multiple times. > > Due to how Artifacts are created in this new version, it is no longer possible to upload to the same named Artifact multiple times. You must either split the uploads into multiple Artifacts with different names, or only upload once. Otherwise you will encounter an error. > > Limit of Artifacts for an individual job. Each job in a workflow run now has a limit of 500 artifacts. > > With v4.4 and later, hidden files are excluded by default.
1 parent 4b42a01 commit eeb11a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/async-stripe.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
# token: ${{secrets.CODECOV_TOKEN}}
137137
# files: lcov.info
138138
# - name: Archive code coverage results
139-
# uses: actions/upload-artifact@v1
139+
# uses: actions/upload-artifact@v4
140140
# with:
141141
# name: code-coverage-report
142142
# path: lcov.info
@@ -148,7 +148,7 @@ jobs:
148148
- uses: actions/checkout@v4
149149
- uses: dtolnay/rust-toolchain@master
150150
with:
151-
toolchain: "nightly-2024-10-18"
151+
toolchain: "nightly-2025-01-25"
152152
- name: Install cargo-public-api
153153
uses: baptiste0928/cargo-install@v3
154154
with:
@@ -167,7 +167,7 @@ jobs:
167167
fs.writeFileSync("./public-api/pr_number", text);
168168
- name: Compare with latest version published on crates.io
169169
run: cargo public-api diff latest --features runtime-tokio-hyper >> "public-api/diff"
170-
- uses: actions/upload-artifact@v3
170+
- uses: actions/upload-artifact@v4
171171
with:
172172
name: public-api
173173
path: public-api/

0 commit comments

Comments
 (0)