Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_reusable-eng-tools-test.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Prefix with "~" to sort last in Actions list
name: ~Templates - eng/tools - Test

Expand Down Expand Up @@ -67,7 +67,7 @@
working-directory: ./eng/tools/${{ inputs.package }}

- name: Archive code coverage results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: code-coverage-report-${{ matrix.os }}-${{ matrix.node-version }}
path: ./eng/tools/${{ inputs.package }}/coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/avocado-code.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Swagger Avocado - Analyze Code"

on:
Expand Down Expand Up @@ -92,7 +92,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.generate-job-summary.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.generate-job-summary.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/breaking-change-code.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Swagger BreakingChange - Analyze Code"

on:
Expand Down Expand Up @@ -68,7 +68,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.swagger-breaking-change-analyze-code.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.swagger-breaking-change-analyze-code.outputs.summary }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Breaking Change(Cross-Version) - Analyze Code"

on:
Expand Down Expand Up @@ -69,7 +69,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.breaking-change-cross-version-analyze-code.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.breaking-change-cross-version-analyze-code.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-test.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: GitHub Actions - Test

on:
Expand Down Expand Up @@ -79,7 +79,7 @@
- run: npm run test:ci

- name: Archive code coverage results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: code-coverage-report-${{ matrix.os }}-${{ fromJSON('{".github":"github", ".github/shared":"github-shared"}')[matrix.folder] }}
path: ./${{ matrix.folder }}/coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lintdiff-code.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Swagger LintDiff - Analyze Code"

on:
Expand Down Expand Up @@ -80,7 +80,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.run-lintdiff.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.run-lintdiff.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/summarize-checks.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Summarize Checks"

on:
Expand Down Expand Up @@ -84,7 +84,7 @@
# May be used by downstream workflows
- name: Set job-summary artifact
if: ${{ always() && steps.summarize-checks.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.summarize-checks.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/summarize-impact.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Summarize PR Impact"

on:
Expand Down Expand Up @@ -57,7 +57,7 @@

- name: Set job-summary artifact
if: ${{ always() && steps.summarize-impact.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.summarize-impact.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swagger-modelvalidation-code.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Swagger ModelValidation - Analyze Code"

on:
Expand Down Expand Up @@ -36,7 +36,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.swagger-model-validation.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.swagger-model-validation.outputs.summary }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swagger-semanticvalidation-code.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name: "Swagger SemanticValidation - Analyze Code"

on:
Expand Down Expand Up @@ -36,7 +36,7 @@
# Used by other workflows like set-status
- name: Set job-summary artifact
if: ${{ always() && steps.swagger-semantic-validation.outputs.summary }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: job-summary
path: ${{ steps.swagger-semantic-validation.outputs.summary }}
Expand Down
Loading