From ae89a5e79fe4850257b8d9e82c0497c424dfc81c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Thu, 26 Mar 2026 03:30:58 +0100 Subject: [PATCH 01/13] ci: support multiple allure reports --- .github/workflows/integration-tests-core.yml | 39 +++++--------------- .github/workflows/integration-tests-v2.yml | 24 ++++-------- 2 files changed, 18 insertions(+), 45 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index a2fdff277e2..17af32fc361 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -77,7 +77,7 @@ jobs: ACCOUNT_NAME: "" CORE_URL: ${{ steps.setup-core.outputs.service_url }} run: | - pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results/ + pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results/ - name: Run integration tests HTTPS env: @@ -90,35 +90,16 @@ jobs: ACCOUNT_NAME: "" CORE_URL: ${{ steps.setup-core.outputs.service_https_url }} run: | - pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ + pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - # Need to pull the pages branch in order to fetch the previous runs - - name: Get Allure history - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - if: always() - continue-on-error: true - with: - ref: gh-pages - path: gh-pages - - - name: Allure Report - uses: firebolt-db/action-allure-report@781b4529b67b4f393c63d7dc1e098cb558e1ab16 # v1.4.1 - if: always() - continue-on-error: true - with: - github-key: ${{ secrets.GITHUB_TOKEN }} - test-type: core - allure-dir: allure-results - pages-branch: gh-pages - repository-name: python-sdk - - - name: Allure Report HTTPS - uses: firebolt-db/action-allure-report@781b4529b67b4f393c63d7dc1e098cb558e1ab16 # v1.4.1 + - name: Allure Reports + uses: firebolt-db/action-allure-report@891ff9e619a844dd484106b94aaf4aae4c5c87e2 # v2.0.0 if: always() - continue-on-error: true with: - github-key: ${{ secrets.GITHUB_TOKEN }} - test-type: core_https - allure-dir: allure-results-https + github-token: ${{ github.token }} pages-branch: gh-pages - repository-name: python-sdk + mapping-json: | + { + "allure-results": "core", + "allure-results-https": "core_https" + } diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index e1d6304369a..acdf0890da9 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -58,23 +58,15 @@ jobs: ACCOUNT_NAME: ${{ vars.FIREBOLT_ACCOUNT }} LONG_TEST_VALUE: ${{ vars.LONG_TEST_VALUE_V2 }} run: | - pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results + pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - # Need to pull the pages branch in order to fetch the previous runs - - name: Get Allure history - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - if: always() - continue-on-error: true - with: - ref: gh-pages - path: gh-pages - - - name: Allure Report - uses: firebolt-db/action-allure-report@781b4529b67b4f393c63d7dc1e098cb558e1ab16 # v1.4.1 + - name: Allure Reports + uses: firebolt-db/action-allure-report@891ff9e619a844dd484106b94aaf4aae4c5c87e2 # v2.0.0 if: always() with: - github-key: ${{ inputs.token || secrets.GITHUB_TOKEN }} - test-type: integration - allure-dir: allure-results + github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} pages-branch: gh-pages - repository-name: python-sdk + mapping-json: | + { + "allure-results": "integration_v2", + } From e04bb96c2f5cf4dcd7eb344d5643d17334806d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Fri, 27 Mar 2026 11:10:01 +0100 Subject: [PATCH 02/13] ci: remove trailing comma --- .github/workflows/integration-tests-v2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index acdf0890da9..96017b2cd09 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -68,5 +68,5 @@ jobs: pages-branch: gh-pages mapping-json: | { - "allure-results": "integration_v2", + "allure-results": "integration_v2" } From 5fb99ffcc1deb36faeef34f6ee21765a7eba18e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Fri, 27 Mar 2026 11:56:38 +0100 Subject: [PATCH 03/13] ci: use v2.0.1 --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 4 ++-- .github/workflows/unit-tests.yml | 18 +++++++----------- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 17af32fc361..807263180a9 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -93,7 +93,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@891ff9e619a844dd484106b94aaf4aae4c5c87e2 # v2.0.0 + uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index 96017b2cd09..f63f5cba8a7 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -60,8 +60,8 @@ jobs: run: | pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - - name: Allure Reports - uses: firebolt-db/action-allure-report@891ff9e619a844dd484106b94aaf4aae4c5c87e2 # v2.0.0 + - name: Allure Report + uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 9def0df3568..3c21f461a54 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -41,20 +41,16 @@ jobs: run: | pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - - name: Get Allure history - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - if: always() - continue-on-error: true - with: - ref: gh-pages - path: gh-pages - - name: Allure Report - uses: firebolt-db/action-allure-report@781b4529b67b4f393c63d7dc1e098cb558e1ab16 # v1.4.1 + uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 if: always() - continue-on-error: true with: - github-key: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} + pages-branch: gh-pages + mapping-json: | + { + "allure-results": "unit" + } - name: Upload coverage report uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 From 545c5c89f9b705c1561780d5971a4cfeac8aabef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Fri, 27 Mar 2026 14:39:42 +0100 Subject: [PATCH 04/13] chore: use new action --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 807263180a9..bc4c9bbf3fe 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -93,7 +93,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 + uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index f63f5cba8a7..e488cf94200 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -61,7 +61,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 + uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3c21f461a54..9937f4d52da 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -42,7 +42,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@a03327a2141697d5eef01094cf01ee78d207b50c # v2.0.1 + uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 if: always() with: github-token: ${{ secrets.GITHUB_TOKEN }} From 412f600927d789f07a00f34c2885e85222a92c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 02:58:50 +0100 Subject: [PATCH 05/13] chore: new version --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index bc4c9bbf3fe..0e804f247ac 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -93,7 +93,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 + uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index e488cf94200..dc63461907f 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -61,7 +61,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 + uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 9937f4d52da..dc6eb5914eb 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -42,7 +42,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@7a29bdaf066a99d63fe98dc54fa9d03bd3d80360 # v2.0.1 + uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 if: always() with: github-token: ${{ secrets.GITHUB_TOKEN }} From 48e11d5c2f140248ca198bdbbac22d5cd306d39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 03:23:13 +0100 Subject: [PATCH 06/13] fix: use correct token --- .github/workflows/unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index dc6eb5914eb..8ab86790561 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -45,7 +45,7 @@ jobs: uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 if: always() with: - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ github.token }} pages-branch: gh-pages mapping-json: | { From cb59271d5358c1845c4b32defecd2da15f021664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 03:30:13 +0100 Subject: [PATCH 07/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 0e804f247ac..962845c0d5f 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -93,7 +93,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 + uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index dc63461907f..aa71a876b00 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -61,7 +61,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 + uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 8ab86790561..5b1b39bfe99 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -42,7 +42,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@ca04303569af1cdf46d1b8dc08681cf65a9160aa # v2.0.1 + uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 if: always() with: github-token: ${{ github.token }} From 40ed117131b87e8e3d181cec116d933b22f135e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 04:19:46 +0100 Subject: [PATCH 08/13] fix: explcitily set permissions --- .github/workflows/integration-tests-core.yml | 3 +++ .github/workflows/integration-tests-v1.yml | 3 +++ .github/workflows/integration-tests-v2.yml | 3 +++ .github/workflows/unit-tests.yml | 3 ++- 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 962845c0d5f..82aa048fe97 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -43,6 +43,9 @@ on: required: false jobs: run-core-integration-tests: + permissions: + contents: write # Push allure reports to gh-pages + statuses: write # Update status on PR runs-on: ${{ inputs.os_name }} steps: - name: Check out code diff --git a/.github/workflows/integration-tests-v1.yml b/.github/workflows/integration-tests-v1.yml index aa24af70dd9..c9c1da4697e 100644 --- a/.github/workflows/integration-tests-v1.yml +++ b/.github/workflows/integration-tests-v1.yml @@ -13,6 +13,9 @@ on: required: true jobs: tests: + permissions: + contents: write # Push allure reports to gh-pages + statuses: write # Update status on PR runs-on: ubuntu-latest steps: - name: Check out code diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index aa71a876b00..bcca2bff200 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -20,6 +20,9 @@ on: jobs: tests: + permissions: + contents: write # Push allure reports to gh-pages + statuses: write # Update status on PR runs-on: ubuntu-latest steps: - name: Check out code diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 5b1b39bfe99..88b62d5385c 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -20,7 +20,8 @@ jobs: unit-tests: runs-on: ubuntu-latest permissions: - contents: write + contents: write # Push allure reports to gh-pages + statuses: write # Update status on PR steps: - name: Check out code uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 From 05a19ef21fd9403a52caa36031d7b06733db3811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 05:46:13 +0100 Subject: [PATCH 09/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 82aa048fe97..eccf3169a05 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -96,7 +96,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 + uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index bcca2bff200..498846c4e5c 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -64,7 +64,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 + uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 88b62d5385c..93f9e40e574 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@2d07225a56160c57cfa2a5aeeb1eeb1f2d978203 # v2.0.1 + uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 if: always() with: github-token: ${{ github.token }} From 958c2faa0fd5c6be9f39bda2758434963de1ec02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 05:57:38 +0100 Subject: [PATCH 10/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index eccf3169a05..7c6043a119b 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -96,7 +96,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 + uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index 498846c4e5c..440db926ead 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -64,7 +64,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 + uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 93f9e40e574..f0f27d213da 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@7ebb6aecd704519dc1431a73a414a705db3793a0 # v2.0.1 + uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 if: always() with: github-token: ${{ github.token }} From ab1c4740e7899d4e4527d16aefc8ddf70e457fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 06:54:14 +0100 Subject: [PATCH 11/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 7c6043a119b..1c0c8400441 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -96,7 +96,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 + uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index 440db926ead..863ac93a753 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -64,7 +64,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 + uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index f0f27d213da..44bf16e0efe 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@4739403c3c3e1abfc7051e5e200124dc79edc535 # v2.0.1 + uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 if: always() with: github-token: ${{ github.token }} From bc6d0b8a39fbfba7d15b7687140e66ecf3faa0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 07:05:44 +0100 Subject: [PATCH 12/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index 1c0c8400441..de2817ef6ed 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -96,7 +96,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 + uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index 863ac93a753..6b3c3064bd5 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -64,7 +64,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 + uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 44bf16e0efe..c7fba6a5a15 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@04595e4682240bfdf9226eefd97cf449b2b3cc65 # v2.0.1 + uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 if: always() with: github-token: ${{ github.token }} From dd28ea80c36696f3a4e2a0dc5e19a5306ab3f500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Str=C3=BCbe?= Date: Sat, 28 Mar 2026 07:24:32 +0100 Subject: [PATCH 13/13] chore: bump --- .github/workflows/integration-tests-core.yml | 2 +- .github/workflows/integration-tests-v2.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests-core.yml b/.github/workflows/integration-tests-core.yml index de2817ef6ed..1c8c0250e51 100644 --- a/.github/workflows/integration-tests-core.yml +++ b/.github/workflows/integration-tests-core.yml @@ -96,7 +96,7 @@ jobs: pytest -o log_cli=true -o log_cli_level=WARNING tests/integration -k "core" --alluredir=allure-results-https/ - name: Allure Reports - uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 + uses: firebolt-db/action-allure-report@084466f7dc8c9dd585d7d03825271f639ade9333 # v2.0.1 if: always() with: github-token: ${{ github.token }} diff --git a/.github/workflows/integration-tests-v2.yml b/.github/workflows/integration-tests-v2.yml index 6b3c3064bd5..77f35b54b63 100644 --- a/.github/workflows/integration-tests-v2.yml +++ b/.github/workflows/integration-tests-v2.yml @@ -64,7 +64,7 @@ jobs: pytest -n 6 --dist loadgroup --timeout_method "signal" -o log_cli=true -o log_cli_level=WARNING tests/integration -k "not V1 and not core" --runslow --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 + uses: firebolt-db/action-allure-report@084466f7dc8c9dd585d7d03825271f639ade9333 # v2.0.1 if: always() with: github-token: ${{ inputs.token || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index c7fba6a5a15..b7fd7f9fb81 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: pytest --cov=src/ tests/unit --cov-report=xml --alluredir=allure-results - name: Allure Report - uses: firebolt-db/action-allure-report@34dc458a82226bbe3d111a2743aed80c4df41da3 # v2.0.1 + uses: firebolt-db/action-allure-report@084466f7dc8c9dd585d7d03825271f639ade9333 # v2.0.1 if: always() with: github-token: ${{ github.token }}