-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GH-165] - Prevent double Base64 encoding of profile href + Github Actions updates #166
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fb3fccd
fix(backend): Prevent double Base64 encoding of profile href
soufianerafik 9277cb2
fix(ci): Update pull-request.yml
soufianerafik 72eda8e
[Bot] Update version to 2.2.8
github-actions[bot] 098a649
fix(ci): Update pull-request.yml > alidate-image-quality to use pipx
soufianerafik 0a50cd7
Merge remote-tracking branch 'origin/GH-165' into GH-165
soufianerafik deaec46
fix(ci): Update pull-request.yml > alidate-image-quality to use Pytho…
soufianerafik 1546abe
fix(ci): Update pull-request.yml > validate-image-quality to use Pyth…
soufianerafik 3af6067
fix(ci): Attempt to fix failing pull-request.yml
soufianerafik 03faff8
fix(ci): Bump google auth dependencies on configure-docker/action.yml
soufianerafik c07d54e
chore(ci): Revert back github token change
soufianerafik 47217d0
chore(ci): Match the id: guidance step
soufianerafik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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" | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks good, thanks!