This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 5e00c51463a (chore) ci: enable apache-snapshots profile (#17608) 5e00c51463a is described below commit 5e00c51463a2337d982698c007b9a866019903be Author: Nicolas Filotto <essob...@users.noreply.github.com> AuthorDate: Sat Mar 29 14:50:15 2025 +0100 (chore) ci: enable apache-snapshots profile (#17608) --- .github/actions/component-test/action.yaml | 4 ++-- .github/actions/incremental-build/action.yaml | 2 +- .github/actions/install-mvnd/action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/component-test/action.yaml b/.github/actions/component-test/action.yaml index 1f31d6b9bf5..14daef06461 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@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 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@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 if: always() with: name: tests-${{ inputs.artifact-upload-suffix }}.log diff --git a/.github/actions/incremental-build/action.yaml b/.github/actions/incremental-build/action.yaml index fcbd1d84052..69bdcd280c0 100644 --- a/.github/actions/incremental-build/action.yaml +++ b/.github/actions/incremental-build/action.yaml @@ -52,7 +52,7 @@ runs: env: GITHUB_TOKEN: ${{ inputs.github-token }} - name: archive logs - uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 if: always() with: name: incremental-${{ inputs.mode }}-${{ inputs.artifact-upload-suffix }}.log diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml index eb4fb89f22c..f47bdf17d87 100644 --- a/.github/actions/install-mvnd/action.yml +++ b/.github/actions/install-mvnd/action.yml @@ -54,5 +54,5 @@ runs: run: echo "mvnd-dir=/tmp/maven-mvnd-${{ inputs.version }}-${{ inputs.distribution }}/bin" >> $GITHUB_OUTPUT shell: bash - id: mvnd-opts - run: echo "MVND_OPTS=-V -e -ntp -Dmvnd.threads=2 -Daether.connector.http.connectionMaxTtl=120 -Daether.connector.requestTimeout=300000 -Daether.dependencyCollector.impl=bf -Dmaven.artifact.threads=25 -Dci.env.name=github.com -Dsurefire.rerunFailingTestsCount=2 -Dfailsafe.rerunFailingTestsCount=2" >> $GITHUB_ENV + run: echo "MVND_OPTS=-P apache-snapshots -V -e -ntp -Dmvnd.threads=2 -Daether.connector.http.connectionMaxTtl=120 -Daether.connector.requestTimeout=300000 -Daether.dependencyCollector.impl=bf -Dmaven.artifact.threads=25 -Dci.env.name=github.com -Dsurefire.rerunFailingTestsCount=2 -Dfailsafe.rerunFailingTestsCount=2" >> $GITHUB_ENV shell: bash