Skip to content

Commit

Permalink
use python 3.9 for snyk
Browse files Browse the repository at this point in the history
3.10 has problem duruing setup, so we use version 3.9 to match CKAN docker.
  • Loading branch information
Jin-Sun-tts committed Oct 25, 2023
1 parent cdf4500 commit 53b1257
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Dependencies
run: |
npm install snyk -g
Expand Down

0 comments on commit 53b1257

Please sign in to comment.