From 38877d9f9e571b81eb3a2347ea9ed9fc0c408b88 Mon Sep 17 00:00:00 2001 From: Marko Kosmerl Date: Thu, 30 Jan 2025 05:53:06 -0300 Subject: [PATCH] chore(IDX): updated token (#3681) --- .github/workflows-source/ci-main.yml | 2 +- .github/workflows-source/release-testing.yml | 8 ++++---- .github/workflows-source/schedule-daily.yml | 6 +++--- .github/workflows-source/schedule-hourly.yml | 2 +- .github/workflows/ci-main.yml | 2 +- .github/workflows/release-testing.yml | 8 ++++---- .github/workflows/schedule-daily.yml | 6 +++--- .github/workflows/schedule-hourly.yml | 2 +- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows-source/ci-main.yml b/.github/workflows-source/ci-main.yml index bf96f816295..1f603a8552a 100644 --- a/.github/workflows-source/ci-main.yml +++ b/.github/workflows-source/ci-main.yml @@ -152,7 +152,7 @@ jobs: BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" # check if PR title contains release and set timeout filters accordingly BAZEL_EXTRA_ARGS: ${{ env.BAZEL_EXTRA_ARGS }} - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} - <<: *bazel-upload bazel-build-all-config-check: diff --git a/.github/workflows-source/release-testing.yml b/.github/workflows-source/release-testing.yml index 4af1efc2eb1..ec03b40a663 100644 --- a/.github/workflows-source/release-testing.yml +++ b/.github/workflows-source/release-testing.yml @@ -81,7 +81,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_nightly" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-system-test-staging: name: Bazel System Test Staging @@ -97,7 +97,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_staging" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-system-test-hotfix: name: Bazel System Test Hotfix @@ -114,7 +114,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_hotfix" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} dependency-scan-release-cut: name: Dependency Scan for Release @@ -186,4 +186,4 @@ jobs: BAZEL_TARGETS: "//rs/tests/dre:guest_os_qualification" BAZEL_CI_CONFIG: "--config=systest --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_timeout=7200 --test_env=OLD_VERSION=${{ matrix.version }}" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} diff --git a/.github/workflows-source/schedule-daily.yml b/.github/workflows-source/schedule-daily.yml index 4cd59af5f67..fcb7a3fa6a0 100644 --- a/.github/workflows-source/schedule-daily.yml +++ b/.github/workflows-source/schedule-daily.yml @@ -116,7 +116,7 @@ jobs: BAZEL_TARGETS: "//rs/ledger_suite/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=fi_tests_nightly --test_env=SSH_AUTH_SOCK --test_timeout=43200" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} nns-tests-nightly: @@ -134,7 +134,7 @@ jobs: BAZEL_TARGETS: "//rs/nns/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=nns_tests_nightly --test_env=SSH_AUTH_SOCK --test_env=NNS_CANISTER_UPGRADE_SEQUENCE=all" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} system-tests-benchmarks-nightly: @@ -158,7 +158,7 @@ jobs: BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" # note: there's just one performance cluster, so the job can't be parallelized BAZEL_EXTRA_ARGS: "--test_tag_filters=system_test_benchmark --//bazel:enable_upload_perf_systest_results=True --keep_going --jobs 1" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} - name: Post Slack Notification uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 # v1.25.0 if: failure() diff --git a/.github/workflows-source/schedule-hourly.yml b/.github/workflows-source/schedule-hourly.yml index 213252095bc..91c6ff75d39 100644 --- a/.github/workflows-source/schedule-hourly.yml +++ b/.github/workflows-source/schedule-hourly.yml @@ -84,7 +84,7 @@ jobs: BAZEL_TARGETS: "//rs/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_hourly" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-run-fuzzers-hourly: name: Bazel Run Fuzzers Hourly diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 18139531a29..ea4d2a1b732 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -100,7 +100,7 @@ jobs: BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" # check if PR title contains release and set timeout filters accordingly BAZEL_EXTRA_ARGS: ${{ env.BAZEL_EXTRA_ARGS }} - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} - name: Upload bazel-targets uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/release-testing.yml b/.github/workflows/release-testing.yml index 34b13a0cd10..03153544e4e 100644 --- a/.github/workflows/release-testing.yml +++ b/.github/workflows/release-testing.yml @@ -50,7 +50,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_nightly" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-system-test-staging: name: Bazel System Test Staging runs-on: @@ -79,7 +79,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_staging" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-system-test-hotfix: name: Bazel System Test Hotfix runs-on: @@ -108,7 +108,7 @@ jobs: BAZEL_TARGETS: "//rs/tests/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_hotfix" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} dependency-scan-release-cut: name: Dependency Scan for Release runs-on: @@ -211,4 +211,4 @@ jobs: BAZEL_TARGETS: "//rs/tests/dre:guest_os_qualification" BAZEL_CI_CONFIG: "--config=systest --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_timeout=7200 --test_env=OLD_VERSION=${{ matrix.version }}" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} diff --git a/.github/workflows/schedule-daily.yml b/.github/workflows/schedule-daily.yml index 1ea0f4b894b..7abdffdc564 100644 --- a/.github/workflows/schedule-daily.yml +++ b/.github/workflows/schedule-daily.yml @@ -92,7 +92,7 @@ jobs: BAZEL_TARGETS: "//rs/ledger_suite/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=fi_tests_nightly --test_env=SSH_AUTH_SOCK --test_timeout=43200" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} nns-tests-nightly: name: Bazel Test NNS Nightly @@ -120,7 +120,7 @@ jobs: BAZEL_TARGETS: "//rs/nns/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=nns_tests_nightly --test_env=SSH_AUTH_SOCK --test_env=NNS_CANISTER_UPGRADE_SEQUENCE=all" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} system-tests-benchmarks-nightly: name: Bazel System Test Benchmarks @@ -154,7 +154,7 @@ jobs: BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" # note: there's just one performance cluster, so the job can't be parallelized BAZEL_EXTRA_ARGS: "--test_tag_filters=system_test_benchmark --//bazel:enable_upload_perf_systest_results=True --keep_going --jobs 1" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} - name: Post Slack Notification uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 # v1.25.0 if: failure() diff --git a/.github/workflows/schedule-hourly.yml b/.github/workflows/schedule-hourly.yml index 42fe9f21e14..580990ab7e5 100644 --- a/.github/workflows/schedule-hourly.yml +++ b/.github/workflows/schedule-hourly.yml @@ -63,7 +63,7 @@ jobs: BAZEL_TARGETS: "//rs/..." BAZEL_CI_CONFIG: "--config=ci --repository_cache=/cache/bazel" BAZEL_EXTRA_ARGS: "--keep_going --test_tag_filters=system_test_hourly" - BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_API_TOKEN }} + BUILDEVENT_APIKEY: ${{ secrets.HONEYCOMB_TOKEN }} bazel-run-fuzzers-hourly: name: Bazel Run Fuzzers Hourly runs-on: