Skip to content

Commit 607c948

Browse files
chore(deps): update actions/upload-artifact action to v7
1 parent 350e0f5 commit 607c948

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: 🧪 Test
3838
run: dotnet test HttpGenerator.sln -c Release
3939
- name: 🗳️ Upload
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: Packages
4343
path: |

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: dotnet test src/HttpGenerator.Tests/HttpGenerator.Tests.csproj -c Release --collect "XPlat Code coverage" -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}"
4242

4343
- name: 🗳️ Upload
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v7
4545
with:
4646
name: Packages
4747
path: |

.github/workflows/release-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
shell: pwsh
3737
run: Get-ChildItem -Filter *.nupkg -Recurse | ForEach-Object { Move-Item -Path $_ -Destination . }
3838
- name: Publish artifacts
39-
uses: actions/upload-artifact@v5
39+
uses: actions/upload-artifact@v7
4040
with:
4141
name: Packages
4242
path: |

.github/workflows/release-vsix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
mv src/HttpGenerator.VSIX/bin/Release/HttpGenerator.VSIX.vsix HttpGenerator-${{ env.VERSION }}.vsix.vsix
4242
- name: Publish artifacts
43-
uses: actions/upload-artifact@v5
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: Visual Studio Extension
4646
path: |

.github/workflows/vscode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
vsce package
4646
4747
- name: Upload VSIX as artifact
48-
uses: actions/upload-artifact@v5
48+
uses: actions/upload-artifact@v7
4949
with:
5050
name: VSCode Extension
5151
path: src/VSCode/*.vsix

.github/workflows/vsix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
mv src/HttpGenerator.VSIX/bin/Release/HttpGenerator.VSIX.vsix HttpGenerator-${{ env.VERSION }}.vsix
4949
5050
- name: Publish artifacts
51-
uses: actions/upload-artifact@v5
51+
uses: actions/upload-artifact@v7
5252
with:
5353
name: Artifacts
5454
path: |

0 commit comments

Comments
 (0)