Skip to content

Commit bb26044

Browse files
Bump actions/upload-artifact from 6 to 7 (#15)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h2>v7 What's new</h2> <h3>Direct Uploads</h3> <p>Adds support for uploading single files directly (unzipped). Callers can set the new <code>archive</code> parameter to <code>false</code> to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The <code>name</code> parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.</p> <h3>ESM</h3> <p>To support new versions of the <code>@actions/*</code> packages, we've upgraded the package to ESM.</p> <h2>What's Changed</h2> <ul> <li>Add proxy integration test by <a href="https://github.com/Link"><code>@​Link</code></a>- in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> <li>Upgrade the module to ESM and bump dependencies by <a href="https://github.com/danwkennedy"><code>@​danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/762">actions/upload-artifact#762</a></li> <li>Support direct file uploads by <a href="https://github.com/danwkennedy"><code>@​danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/764">actions/upload-artifact#764</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Link"><code>@​Link</code></a>- made their first contribution in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload-artifact/compare/v6...v7.0.0">https://github.com/actions/upload-artifact/compare/v6...v7.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/upload-artifact/commit/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"><code>bbbca2d</code></a> Support direct file uploads (<a href="https://redirect.github.com/actions/upload-artifact/issues/764">#764</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/589182c5a4cec8920b8c1bce3e2fab1c97a02296"><code>589182c</code></a> Upgrade the module to ESM and bump dependencies (<a href="https://redirect.github.com/actions/upload-artifact/issues/762">#762</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/47309c993abb98030a35d55ef7ff34b7fa1074b5"><code>47309c9</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-artifact/issues/754">#754</a> from actions/Link-/add-proxy-integration-tests</li> <li><a href="https://github.com/actions/upload-artifact/commit/02a8460834e70dab0ce194c64360c59dc1475ef0"><code>02a8460</code></a> Add proxy integration test</li> <li>See full diff in <a href="https://github.com/actions/upload-artifact/compare/v6...v7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=6&new-version=7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d21a62b commit bb26044

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
curl -O https://raw.githubusercontent.com/XTLS/go-win7/refs/heads/build/LICENSE
8888
8989
- name: Upload package to Artifacts
90-
uses: actions/upload-artifact@v6
90+
uses: actions/upload-artifact@v7
9191
with:
9292
name: go-for-win7-${{ env.ASSET_NAME }}
9393
path: |
@@ -144,7 +144,7 @@ jobs:
144144
curl -O https://raw.githubusercontent.com/XTLS/go-win7/refs/heads/build/LICENSE
145145
146146
- name: Upload package to Artifacts
147-
uses: actions/upload-artifact@v6
147+
uses: actions/upload-artifact@v7
148148
with:
149149
name: source-pre-KB2533623
150150
path: |
@@ -201,7 +201,7 @@ jobs:
201201
curl -O https://raw.githubusercontent.com/XTLS/go-win7/refs/heads/build/LICENSE
202202
203203
- name: Upload package to Artifacts
204-
uses: actions/upload-artifact@v6
204+
uses: actions/upload-artifact@v7
205205
with:
206206
name: source-pre-SP1
207207
path: |

.github/workflows/test-go1_22.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
ls -al ./bin
9393
9494
- name: Upload package to Artifacts
95-
uses: actions/upload-artifact@v6
95+
uses: actions/upload-artifact@v7
9696
with:
9797
name: go-for-win7-${{ env.ASSET_NAME }}
9898
path: |

.github/workflows/test-go1_23.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
ls -al ./bin
9393
9494
- name: Upload package to Artifacts
95-
uses: actions/upload-artifact@v6
95+
uses: actions/upload-artifact@v7
9696
with:
9797
name: go-for-win7-${{ env.ASSET_NAME }}
9898
path: |

.github/workflows/test-go1_24.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
ls -al ./bin
9494
9595
- name: Upload package to Artifacts
96-
uses: actions/upload-artifact@v6
96+
uses: actions/upload-artifact@v7
9797
with:
9898
name: go-for-win7-${{ env.ASSET_NAME }}
9999
path: |

.github/workflows/test-go1_25.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
ls -al ./bin
9494
9595
- name: Upload package to Artifacts
96-
uses: actions/upload-artifact@v6
96+
uses: actions/upload-artifact@v7
9797
with:
9898
name: go-for-win7-${{ env.ASSET_NAME }}
9999
path: |

.github/workflows/test-go1_26.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
ls -al ./bin
8989
9090
- name: Upload package to Artifacts
91-
uses: actions/upload-artifact@v6
91+
uses: actions/upload-artifact@v7
9292
with:
9393
name: go-for-win7-${{ env.ASSET_NAME }}
9494
path: |
@@ -115,7 +115,7 @@ jobs:
115115
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB2533623-1-26.diff | patch --verbose -p 1
116116
117117
- name: Upload package to Artifacts
118-
uses: actions/upload-artifact@v6
118+
uses: actions/upload-artifact@v7
119119
with:
120120
name: source-pre-KB2533623
121121
path: |
@@ -142,7 +142,7 @@ jobs:
142142
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-SP1-1-26.diff | patch --verbose -p 1
143143
144144
- name: Upload package to Artifacts
145-
uses: actions/upload-artifact@v6
145+
uses: actions/upload-artifact@v7
146146
with:
147147
name: source-pre-SP1
148148
path: |

.github/workflows/test-go_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
ls -al ./bin
8585
8686
- name: Upload package to Artifacts
87-
uses: actions/upload-artifact@v6
87+
uses: actions/upload-artifact@v7
8888
with:
8989
name: go-for-win7-master-${{ env.ASSET_NAME }}
9090
path: |
@@ -111,7 +111,7 @@ jobs:
111111
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/patchmaster/pre-KB2533623-master.diff | patch --verbose -p 1
112112
113113
- name: Upload package to Artifacts
114-
uses: actions/upload-artifact@v6
114+
uses: actions/upload-artifact@v7
115115
with:
116116
name: source-pre-KB2533623-master
117117
path: |

0 commit comments

Comments
 (0)