Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/upload-artifact from 4.4.1 to 4.4.2 #191

Merged
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -362,15 +362,15 @@ jobs:
# upload report as artifact
- name: Archive unit tests report
if: inputs.upload-skip == false
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
with:
name: report
path: ${{ inputs.working-directory }}/report.json

# upload coverage as artifact
- name: Archive code coverage results
if: inputs.upload-skip == false
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
with:
name: coverage
path: ${{ inputs.working-directory }}/coverage.txt
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:

- name: Archive code style results
if: inputs.upload-skip == false
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
with:
name: fmt
path: ${{ inputs.working-directory }}/fmt.patch
Expand Down Expand Up @@ -583,7 +583,7 @@ jobs:

- name: Archive license results
if: always() && inputs.upload-skip == false
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1
uses: actions/upload-artifact@84480863f228bb9747b473957fcc9e309aa96097 # v4.4.2
with:
name: licensing
path: |
Expand Down
Loading