This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch pin-actions-component-test in repository https://gitbox.apache.org/repos/asf/camel.git
commit 92a8e742fda6e3c65f5303cad0e2545be20fc119 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Aug 20 07:59:49 2024 +0200 Github Actions Security Best practices: Pin Actions to Full lenght Commit SHA - Component Test Action --- .github/actions/component-test/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/component-test/action.yaml b/.github/actions/component-test/action.yaml index c1006e4a85a..1f31d6b9bf5 100644 --- a/.github/actions/component-test/action.yaml +++ b/.github/actions/component-test/action.yaml @@ -48,7 +48,7 @@ runs: FAST_BUILD: "true" LOG_FILE: build.log - name: archive logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 if: always() with: name: build-${{ inputs.artifact-upload-suffix }}.log @@ -62,7 +62,7 @@ runs: FAST_BUILD: "false" LOG_FILE: tests.log - name: archive logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 if: always() with: name: tests-${{ inputs.artifact-upload-suffix }}.log
