-
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.
[GH-165] - Prevent double Base64 encoding of profile href + Github Ac…
…tions updates (#166) * fix(backend): Prevent double Base64 encoding of profile href * fix(ci): Update pull-request.yml * [Bot] Update version to 2.2.8 * fix(ci): Update pull-request.yml:validate-image-quality to use pipx * fix(ci): Bump google auth dependencies on configure-docker/action.yml --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ef5ea2b
commit 408312d
Showing
4 changed files
with
36 additions
and
8 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
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 |
---|---|---|
|
@@ -21,16 +21,16 @@ jobs: | |
new-version: ${{ steps.update-version.outputs.new-version }} | ||
steps: | ||
- name: Python Poetry Action | ||
uses: abatilo/actions-poetry@v2.1.6 | ||
run: pipx install poetry | ||
|
||
- uses: uwit-iam/actions/[email protected] | ||
id: guidance | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: uwit-iam/actions/[email protected].16 | ||
- uses: uwit-iam/actions/[email protected].20 | ||
with: | ||
github-token: ${{ env.GITHUB_TOKEN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
version-guidance: ${{ steps.guidance.outputs.guidance }} | ||
id: update-version | ||
|
||
|
@@ -49,7 +49,17 @@ jobs: | |
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
|
||
- 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 tox uw-it-build-fingerprinter | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "uw-husky-directory" | ||
version = "2.2.7" | ||
version = "2.2.8" | ||
description = "An updated version of the UW Directory" | ||
authors = ["Thomas Thorogood <[email protected]>"] | ||
license = "MIT" | ||
|