Github action: supabase link with ipv6 enabled issue #20955
|
So recently it seems our organisation was upgraded to ipv6 over ipv4.
However, none of this seems to address how we can fix this from the remote connection point of view while running in Github actions. Our Github action looks like this: The last two env options have been added to try and resolve the issues, but they did not improve the situation. Has anyone else seen this same issue and found a resolution? |
Replies: 3 comments 4 replies
|
From here: https://github.com/orgs/supabase/discussions/17817 'Do I need to make any changes if I am using the CLI?'
There are also mentions of fixes/issues there with github actions. |
|
I am getting this same error using |
|
I encountered this issue and solved by to define newer version of CLI. https://github.com/supabase/setup-cli/tree/v1/?tab=readme-ov-file#usage |
From here: https://github.com/orgs/supabase/discussions/17817
'Do I need to make any changes if I am using the CLI?'
If you are using a version before 1.136.3, please upgrade to a later version of the CLI and run supabase link. If you haven’t run supabase link since 1st January 2024, please run it again after upgrading. This will enable the CLI to communicate to the database from IPv4 only environments because the communication happens via Supavisor. This change is required if you are using from the CLI from an environment without IPv6 support, like Github actions or possibly from your home network.There are also mentions of fixes/issues there with github actions.
Sorry if that is repeat…