Skip to content

Commit

Permalink
Merge pull request #42 from voquis/39-pin-versions
Browse files Browse the repository at this point in the history
#39 Pin python version
  • Loading branch information
danial-k authored Apr 26, 2024
2 parents 9089b4f + f3d672a commit 9571bfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
contents: read
steps:
# Checkout project code
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Set up python environment
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.11'

# Install python poetry and dependencies for use in later steps
- run: ./scripts/poetry.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- run: for f in $(find scripts -type f -name *.sh); do shellcheck $f; done;

# Use python setup action to configure version
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.11'

Expand Down

0 comments on commit 9571bfc

Please sign in to comment.