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
4 changes: 2 additions & 2 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ jobs:
compile: ${{ needs.changes.outputs.compile }}

- name: Get artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: universal
path: output-universal
Expand Down Expand Up @@ -559,7 +559,7 @@ jobs:
compile: ${{ needs.changes.outputs.compile }}

- name: Get artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: prune
path: output-universal-example-B-${{ matrix.prune }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
go tool cover -func=coverage-merged.out

- name: Upload merged coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: "coverage-merged"
path: "cmd/firmware-action/coverage-merged.out"
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
key: go-test-${{ matrix.testregex }}-cache

- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: "coverage-${{ matrix.testregex }}"
path: "cmd/firmware-action/coverage-${{ matrix.testregex }}.out"
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
go test -race -v -timeout 60m -shuffle=on -covermode=atomic -coverprofile "coverage-short.out" -skip '(TestLinux|TestEdk2|TestCoreboot|TestStitching|TestURoot|TestUniversal|TestUBoot)' ./...

- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: "coverage-short"
path: "cmd/firmware-action/coverage-short.out"
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ inputs:
directory), so that you don't have it. Combined with the option 'auto-download-artifacts'
firmware-action should be able to built entire firmware stack in CI even if it is split into multiple
jobs and even if there are multiple matrix builds running in parallel.
Internally a actions/upload-artifact@v6 is used
Internally a actions/upload-artifact@v7 is used
required: false
default: 'false'

Expand Down Expand Up @@ -436,7 +436,7 @@ runs:

- name: upload_artifact
if: ${{ always() && inputs.auto-upload-artifacts == 'true' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
id: upload_artifact
with:
name: ${{ steps.get_artifact_name.outputs.artifact_name }}
Expand Down
Loading