mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 18:17:55 +00:00
Bump actions/upload-artifact from 4.3.3 to 4.3.6 (#28008)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](65462800fd...834a144ee9)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: akshya96 <87045294+akshya96@users.noreply.github.com>
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -387,7 +387,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
version: ${{ needs.setup.outputs.vault-version-metadata }}
|
version: ${{ needs.setup.outputs.vault-version-metadata }}
|
||||||
product: ${{ needs.setup.outputs.vault-binary-name }}
|
product: ${{ needs.setup.outputs.vault-binary-name }}
|
||||||
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
- uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
if: steps.generate-metadata-file.outcome == 'success' # upload our metadata if we created it
|
if: steps.generate-metadata-file.outcome == 'success' # upload our metadata if we created it
|
||||||
with:
|
with:
|
||||||
name: metadata.json
|
name: metadata.json
|
||||||
|
|||||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -207,7 +207,7 @@ jobs:
|
|||||||
mkdir -p test-results/qunit
|
mkdir -p test-results/qunit
|
||||||
yarn ${{ needs.setup.outputs.is-enterprise == 'true' && 'test' || 'test:oss' }}
|
yarn ${{ needs.setup.outputs.is-enterprise == 'true' && 'test' || 'test:oss' }}
|
||||||
- if: always()
|
- if: always()
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
name: test-results-ui
|
name: test-results-ui
|
||||||
path: ui/test-results
|
path: ui/test-results
|
||||||
|
|||||||
8
.github/workflows/test-go.yml
vendored
8
.github/workflows/test-go.yml
vendored
@@ -478,7 +478,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
tar -cvf '${{ steps.metadata.outputs.go-test-log-archive-name }}' -C "${{ steps.metadata.outputs.go-test-log-dir }}" .
|
tar -cvf '${{ steps.metadata.outputs.go-test-log-archive-name }}' -C "${{ steps.metadata.outputs.go-test-log-dir }}" .
|
||||||
- name: Upload test logs archives
|
- name: Upload test logs archives
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.metadata.outputs.go-test-log-archive-name }}
|
name: ${{ steps.metadata.outputs.go-test-log-archive-name }}
|
||||||
path: ${{ steps.metadata.outputs.go-test-log-archive-name }}
|
path: ${{ steps.metadata.outputs.go-test-log-archive-name }}
|
||||||
@@ -486,7 +486,7 @@ jobs:
|
|||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
- name: Upload test results
|
- name: Upload test results
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.metadata.outputs.go-test-results-upload-key }}
|
name: ${{ steps.metadata.outputs.go-test-results-upload-key }}
|
||||||
path: |
|
path: |
|
||||||
@@ -526,7 +526,7 @@ jobs:
|
|||||||
if: |
|
if: |
|
||||||
(success() || failure()) &&
|
(success() || failure()) &&
|
||||||
steps.data-race-check.outputs.data-race-result == 'failure'
|
steps.data-race-check.outputs.data-race-result == 'failure'
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.metadata.outputs.data-race-log-upload-key }}
|
name: ${{ steps.metadata.outputs.data-race-log-upload-key }}
|
||||||
path: ${{ steps.metadata.outputs.go-test-dir }}/${{ steps.metadata.outputs.data-race-log-file }}
|
path: ${{ steps.metadata.outputs.go-test-dir }}/${{ steps.metadata.outputs.data-race-log-file }}
|
||||||
@@ -599,7 +599,7 @@ jobs:
|
|||||||
'${{ steps.metadata.outputs.gotestsum-timing-events }}' \
|
'${{ steps.metadata.outputs.gotestsum-timing-events }}' \
|
||||||
>> '${{ steps.metadata.outputs.failure-summary-file-name }}'
|
>> '${{ steps.metadata.outputs.failure-summary-file-name }}'
|
||||||
- name: Upload failure summary
|
- name: Upload failure summary
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.metadata.outputs.failure-summary-file-name }}
|
name: ${{ steps.metadata.outputs.failure-summary-file-name }}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
||||||
- run: go test -v ./${{ inputs.path }}/... 2>&1 | tee ${{ inputs.name }}.txt
|
- run: go test -v ./${{ inputs.path }}/... 2>&1 | tee ${{ inputs.name }}.txt
|
||||||
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
- uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
name: ${{ inputs.name }}-output
|
name: ${{ inputs.name }}-output
|
||||||
path: ${{ inputs.name }}.txt
|
path: ${{ inputs.name }}.txt
|
||||||
|
|||||||
@@ -155,7 +155,7 @@ jobs:
|
|||||||
run: enos scenario launch --timeout 60m0s --chdir ./enos ${{ matrix.scenario.id.filter }}
|
run: enos scenario launch --timeout 60m0s --chdir ./enos ${{ matrix.scenario.id.filter }}
|
||||||
- name: Upload Debug Data
|
- name: Upload Debug Data
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
||||||
with:
|
with:
|
||||||
# The name of the artifact is the same as the matrix scenario name with the spaces replaced with underscores and colons replaced by equals.
|
# The name of the artifact is the same as the matrix scenario name with the spaces replaced with underscores and colons replaced by equals.
|
||||||
name: ${{ steps.prepare_scenario.outputs.debug_data_artifact_name }}
|
name: ${{ steps.prepare_scenario.outputs.debug_data_artifact_name }}
|
||||||
|
|||||||
Reference in New Issue
Block a user