Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bigquery-ded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
github.event.label.name == 'dedicated_bigquery' ||
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'dedicated_bigquery')) ||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'dedicated_bigquery'))
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
env:
GCLOUD_VERSION: 500.0.0
Expand All @@ -38,7 +38,7 @@ jobs:
!(startsWith(github.event.pull_request.head.ref, 'release/'))
run: echo "BQ_PREFIX=dedicated_${{ github.event.pull_request.number }}_" >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Auth google
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/bigquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ on:
workflow_call:

env:
NODE_VERSION: 14
PYTHON3_VERSION: 3.8.10
NODE_VERSION: 20
PYTHON3_VERSION: 3.12.2
VIRTUALENV_VERSION: 20.21.1
GCLOUD_VERSION: 500.0.0

jobs:

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 30
env:
BQ_PREFIX: ci_${{ github.sha }}_${{ github.run_id }}_${{ github.run_attempt }}_
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Check diff
uses: technote-space/get-diff-action@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Auth google
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
deploy-internal:
if: github.ref_name == 'main'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
matrix:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
deploy:
if: github.ref_name == 'stable'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
fail-fast: false
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
publish:
if: github.ref_name == 'stable'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 10
env:
PACKAGE_BUCKET: gs://carto-analytics-toolbox-core/bigquery
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/databricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

test:
if: false
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 30
env:
DB_PREFIX: ci_${{ github.sha }}_${{ github.run_id }}_${{ github.run_attempt }}_
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
deploy-internal:
if: github.ref_name == 'main'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
matrix:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
publish:
needs: test
if: github.ref_name == 'stable'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 10
env:
PACKAGE_BUCKET: gs://carto-analytics-toolbox-core/databricks
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/postgres-ded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
types: [closed, unlabeled, labeled, synchronize]

env:
NODE_VERSION: 14
PYTHON3_VERSION: 3.8.10
NODE_VERSION: 20
PYTHON3_VERSION: 3.12.2
VIRTUALENV_VERSION: 20.21.1

jobs:
Expand All @@ -16,7 +16,7 @@ jobs:
github.event.label.name == 'dedicated_postgres' ||
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'dedicated_postgres')) ||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'dedicated_postgres'))
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
env:
PG_HOST: ${{ secrets.PG_HOST_CD }}
Expand All @@ -40,7 +40,7 @@ jobs:
!(startsWith(github.event.pull_request.head.ref, 'release/'))
run: echo "PG_PREFIX=dedicated_${{ github.event.pull_request.number }}_" >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup python 3
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ on:
workflow_call:

env:
NODE_VERSION: 14
PYTHON3_VERSION: 3.8.10
NODE_VERSION: 20
PYTHON3_VERSION: 3.12.2
VIRTUALENV_VERSION: 20.21.1
GCLOUD_VERSION: 500.0.0

jobs:

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 30
env:
PG_PREFIX: ci_${{ github.sha }}_${{ github.run_id }}_${{ github.run_attempt }}_
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Check diff
uses: technote-space/get-diff-action@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup python 3
Expand All @@ -57,7 +57,7 @@ jobs:
deploy-internal:
if: github.ref_name == 'main'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
matrix:
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Check diff
uses: technote-space/get-diff-action@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup python 3
Expand All @@ -98,15 +98,15 @@ jobs:
publish:
if: github.ref_name == 'stable'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 10
env:
PACKAGE_BUCKET: gs://carto-analytics-toolbox-core/postgres
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup python 3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/redshift-ded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
types: [closed, unlabeled, labeled, synchronize]

env:
NODE_VERSION: 14
NODE_VERSION: 20
PYTHON2_VERSION: 2.7.18
PYTHON3_VERSION: 3.8.10
PYTHON3_VERSION: 3.12.2
VIRTUALENV_VERSION: 20.15.1

jobs:
Expand All @@ -17,7 +17,7 @@ jobs:
github.event.label.name == 'dedicated_redshift' ||
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'dedicated_redshift')) ||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'dedicated_redshift'))
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: python:2.7.18-buster
timeout-minutes: 20
env:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
!(startsWith(github.event.pull_request.head.ref, 'release/'))
run: echo "RS_PREFIX=dedicated_${{ github.event.pull_request.number }}_" >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup yarn
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/redshift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ on:
workflow_call:

env:
NODE_VERSION: 14
NODE_VERSION: 20
PYTHON2_VERSION: 2.7.18
PYTHON3_VERSION: 3.8.10
PYTHON3_VERSION: 3.12.2
VIRTUALENV_VERSION: 20.15.1
GCLOUD_VERSION: 500.0.0

jobs:

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: python:2.7.18-buster
timeout-minutes: 30
env:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Check diff
uses: technote-space/get-diff-action@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup yarn
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
deploy-internal:
if: github.ref_name == 'main'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: python:2.7.18-buster
timeout-minutes: 20
strategy:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Check diff
uses: technote-space/get-diff-action@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup yarn
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
publish:
if: github.ref_name == 'stable'
needs: test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container: python:2.7.18-buster
timeout-minutes: 10
env:
Expand All @@ -152,7 +152,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snowflake-ded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
github.event.label.name == 'dedicated_snowflake' ||
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'dedicated_snowflake')) ||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'dedicated_snowflake'))
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
timeout-minutes: 20
env:
SF_ACCOUNT: ${{ secrets.SF_ACCOUNT_CD }}
Expand All @@ -39,7 +39,7 @@ jobs:
!(startsWith(github.event.pull_request.head.ref, 'release/'))
run: echo "SF_PREFIX=dedicated_${{ github.event.pull_request.number }}_" >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Run deploy
Expand Down
Loading
Loading