Skip to content

Commit 0b39d55

Browse files
authored
Merge pull request #153 from 7474/dependabot/github_actions/actions/upload-artifact-6
Bump actions/upload-artifact from 4 to 6
2 parents 25f3850 + 0be7f85 commit 0b39d55

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Publish
2626
run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --arch x64 --no-build --output "${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}"
2727
- name: Publish Artifacts
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v6
2929
with:
3030
name: functionapp
3131
path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- run: dotnet test NantoNBaiTests/NantoNBaiTests.csproj --no-build --verbosity normal
2424
- name: Check result
2525
if: failure()
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: ci-result
2929
path: NantoNBaiTests/bin

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Check result
3333
if: failure()
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v6
3535
with:
3636
name: e2e-result
3737
path: E2ETest/bin

0 commit comments

Comments
 (0)