Skip to content

Commit

Permalink
revert /pull/953
Browse files Browse the repository at this point in the history
* installing Python dependencies on runner breaks other dependencies (e.g. AWS-CLI)
* run steps on Linux/amd64 until actions/setup-python#705 is resolved

change-type: patch
  • Loading branch information
ab77 committed Mar 25, 2024
1 parent 81e0f7c commit 38fcc97
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/flowzone.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions flowzone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3184,7 +3184,8 @@ jobs:

cloudformation_test:
name: Test CloudFormation
runs-on: ${{ fromJSON(inputs.cloudformation_runs_on || inputs.runs_on) }}
# FIXME: https://github.com/actions/setup-python/issues/705
runs-on: ["Linux", "X64"] #${{ fromJSON(inputs.cloudformation_runs_on || inputs.runs_on) }}
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -3284,9 +3285,15 @@ jobs:
echo "caps=${caps}" >> $GITHUB_OUTPUT
- <<: *setupPython
with:
cache: 'pip' # caching pip dependencies
python-version: 3.11

- name: Install cfn-lint
run: |
python3 -m pip install cfn-lint==0.83.7
python -m pip install --upgrade pip
python -m pip install cfn-lint==0.83.7
- name: Lint template
run: |
Expand Down

0 comments on commit 38fcc97

Please sign in to comment.