Skip to content

Commit

Permalink
Specify python-version in actions/setup-python
Browse files Browse the repository at this point in the history
  • Loading branch information
philerooski committed Oct 15, 2024
1 parent 15f753b commit f522fda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/upload-and-deploy-to-prod-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: pre-commit/[email protected]


Expand Down Expand Up @@ -125,7 +127,7 @@ jobs:
cat $SNOWFLAKE_CONFIG_PATH
- name: Install Snowflake CLI
uses: Snowflake-Labs/snowflake-cli-action@v1
uses: Snowflake-Labs/snowflake-cli-action@v1.5
with:
default-config-file-path: ${{ env.SNOWFLAKE_CONFIG_PATH }}

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: pre-commit/[email protected]

deploy-snowflake:
Expand Down Expand Up @@ -66,7 +68,7 @@ jobs:
cat $SNOWFLAKE_CONFIG_PATH
- name: Install Snowflake CLI
uses: Snowflake-Labs/snowflake-cli-action@v1
uses: Snowflake-Labs/snowflake-cli-action@v1.5
with:
default-config-file-path: ${{ env.SNOWFLAKE_CONFIG_PATH }}

Expand Down

0 comments on commit f522fda

Please sign in to comment.