-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): Fix failing create-release.yml by updating dependencies
- Loading branch information
1 parent
408312d
commit dbef6b4
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,8 +40,18 @@ jobs: | |
- uses: UWIT-IAM/actions/[email protected] | ||
with: | ||
gcloud-token: ${{ secrets.GCR_TOKEN }} | ||
- name: Install poetry | ||
uses: abatilo/[email protected] | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
|
||
- name: Install Poetry with pip | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install poetry | ||
poetry --version | ||
- run: | | ||
sudo apt-get -y install jq | ||
poetry run pip install uw-it-build-fingerprinter tox | ||
|