From 55d4fcb4046d64b298f6743a96099bdb0dd046eb Mon Sep 17 00:00:00 2001 From: Vijay Vavdiya Date: Thu, 19 Oct 2023 18:09:27 +0530 Subject: [PATCH 1/4] replaced set-output Signed-off-by: Vijay Vavdiya --- .github/workflows/cypress_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress_workflow.yml b/.github/workflows/cypress_workflow.yml index 1853aad0d69..14975e23b17 100644 --- a/.github/workflows/cypress_workflow.yml +++ b/.github/workflows/cypress_workflow.yml @@ -128,7 +128,7 @@ jobs: - name: Get Cypress version id: cypress_version run: | - echo "::set-output name=cypress_version::$(cat ./${{ env.FTR_PATH }}/package.json | jq '.devDependencies.cypress' | tr -d '"')" + echo "name=cypress_version::$(cat ./${{ env.FTR_PATH }}/package.json | jq '.devDependencies.cypress' | tr -d '"')" >> $GITHUB_OUTPUT - name: Cache Cypress id: cache-cypress From 346b477b088f7ee130254eb439693b5eace97b9e Mon Sep 17 00:00:00 2001 From: Vijay Vavdiya Date: Thu, 19 Oct 2023 18:10:55 +0530 Subject: [PATCH 2/4] CI replaced set-output Signed-off-by: Vijay Vavdiya --- .github/workflows/build_and_test_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test_workflow.yml b/.github/workflows/build_and_test_workflow.yml index a9175ad23f8..62e527e7fb2 100644 --- a/.github/workflows/build_and_test_workflow.yml +++ b/.github/workflows/build_and_test_workflow.yml @@ -352,7 +352,7 @@ jobs: id: verify-opensearch-exists run: | if curl -I -L ${{ env.OPENSEARCH_URL }}; then - echo "::set-output name=version-exists::true" + echo "name=version-exists::true" >> $GITHUB_OUTPUT fi - name: Skipping tests From 512e48dba16c3e2674800f83b57c0daeb8652112 Mon Sep 17 00:00:00 2001 From: Vijay Vavdiya Date: Fri, 20 Oct 2023 10:08:28 +0530 Subject: [PATCH 3/4] Updated CHANGELOG.md for change #5340 Signed-off-by: Vijay Vavdiya --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e8e40120a..8789dad2b2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - [CI] Enable inputs for manually triggered Cypress test jobs ([#5134](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5134)) - [CI] Add `NODE_OPTIONS` and disable disk allocation threshold ([#5172](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5172)) - [CI] Supprt CI Groups for Cypress test jobs ([#5298](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5298)) +- [CI] set-output is deprecated ([#5340](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5340)) ### 📝 Documentation @@ -807,4 +808,4 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### 🔩 Tests -- Update caniuse to fix failed integration tests ([#2322](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2322)) \ No newline at end of file +- Update caniuse to fix failed integration tests ([#2322](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2322)) From e0b0f239f20f15c1e1949b9c74fc5a66fc49af23 Mon Sep 17 00:00:00 2001 From: Vijay Vavdiya Date: Mon, 23 Oct 2023 11:08:26 +0530 Subject: [PATCH 4/4] Updated CHANGELOG.md for #5322 [CI] Replace usage of deprecated `set-output` in workflows Co-authored-by: Josh Romero Signed-off-by: Vijay Vavdiya --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8789dad2b2f..c1a98066e2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,7 +82,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - [CI] Enable inputs for manually triggered Cypress test jobs ([#5134](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5134)) - [CI] Add `NODE_OPTIONS` and disable disk allocation threshold ([#5172](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5172)) - [CI] Supprt CI Groups for Cypress test jobs ([#5298](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5298)) -- [CI] set-output is deprecated ([#5340](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5340)) +- [CI] Replace usage of deprecated `set-output` in workflows ([#5340](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/5340)) ### 📝 Documentation