From 35194ca617966252b6725b18bf2cd528c4667d6c Mon Sep 17 00:00:00 2001 From: Jakub Michalak Date: Mon, 18 Nov 2024 13:10:46 +0100 Subject: [PATCH] Final fixes --- .github/workflows/tests.yml | 4 ++-- pkg/sdk/testint/security_integrations_gen_integration_test.go | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cf2ed779df..3ec814e652 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,11 +41,11 @@ jobs: - name: Create and populate .snowflake/config file id: create_config - run: mkdir -p $HOME/.snowflake && echo "${{ secrets.TMP_JMICHALAK_SNOWFLAKE_CONFIG_FILE }}" > $HOME/.snowflake/config + run: mkdir -p $HOME/.snowflake && echo "${{ secrets.SNOWFLAKE_CONFIG_FILE }}" > $HOME/.snowflake/config - name: Create and populate .snowflake/config_v097_compatible file id: create_config_v097_compatible - run: mkdir -p $HOME/.snowflake && echo "${{ secrets.TMP_JMICHALAK_SNOWFLAKE_CONFIG_FILE_V097_COMPATIBLE }}" > $HOME/.snowflake/config_v097_compatible + run: mkdir -p $HOME/.snowflake && echo "${{ secrets.SNOWFLAKE_CONFIG_FILE_V097_COMPATIBLE }}" > $HOME/.snowflake/config_v097_compatible - run: make test if: ${{ !cancelled() && steps.create_config.conclusion == 'success' }} diff --git a/pkg/sdk/testint/security_integrations_gen_integration_test.go b/pkg/sdk/testint/security_integrations_gen_integration_test.go index cc2fd07ab4..69e25666b5 100644 --- a/pkg/sdk/testint/security_integrations_gen_integration_test.go +++ b/pkg/sdk/testint/security_integrations_gen_integration_test.go @@ -889,6 +889,7 @@ func TestInt_SecurityIntegrations(t *testing.T) { externalOauthIssuer: newIssuer, externalOauthAnyRoleMode: string(sdk.ExternalOauthSecurityIntegrationAnyRoleModeDisable), externalOauthRsaPublicKey: rsaKey, + externalOauthScopeMappingAttribute: "scp", externalOauthRsaPublicKey2: rsaKey, externalOauthBlockedRolesList: role1.Name, externalOauthAudienceList: "foo",