This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit 29e3bdda8884a49fda6fbc937ae1c2d03f1eaa6e Author: James Netherton <[email protected]> AuthorDate: Tue Jan 7 07:38:41 2025 +0000 Clean up usage of deprecated set-output in CI workflow --- .github/workflows/ci-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index b92161e..b7d031b 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -102,7 +102,7 @@ jobs: run: | sudo apt install groovy -y --no-install-recommends TEST_GROUPS=$(groovy .github/generate-test-groups.groovy) - echo "::set-output name=matrix::${TEST_GROUPS}" + echo "matrix=${TEST_GROUPS}" >> $GITHUB_OUTPUT integration-tests: name: Integration Tests - ${{matrix.name}}
