Skip to content

Commit 220ebde

Browse files
authored
Merge pull request #27 from slothkong/main
Fix python version 3.7 with architecture x64 not found for Ubuntu 24.04
2 parents c294c31 + 39a001e commit 220ebde

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
DATABASE_PARENT_ID: 'mock_database_parent_id'
1515
NOTION_TOKEN: 'mock_notion_token'
1616
steps:
17-
- uses: actions/checkout@v2
18-
- name: Set up Python 3.7
19-
uses: actions/setup-python@v2
17+
- uses: actions/checkout@v4
18+
- name: Set up Python 3.12
19+
uses: actions/setup-python@v4
2020
with:
21-
python-version: '3.7'
21+
python-version: '3.12'
2222
- name: Install dependencies
2323
run: |
2424
pip install requests

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
- name: Install Python
3434
uses: "actions/setup-python@v4"
3535
with:
36-
python-version: "3.7"
36+
python-version: "3.12"
3737
- name: Install dbt
3838
run: "pip3 install ${{ inputs.dbt-package }}"
3939
shell: bash

0 commit comments

Comments
 (0)