-
Notifications
You must be signed in to change notification settings - Fork 6
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
[DPE-6395] Update to Postgresql 14.15 #72
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,11 @@ on: | |
jobs: | ||
lint: | ||
name: Lint | ||
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v23.1.0 | ||
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v24.0.6 | ||
|
||
build: | ||
name: Build snap | ||
uses: canonical/data-platform-workflows/.github/workflows/build_snap.yaml@v23.1.0 | ||
uses: canonical/data-platform-workflows/.github/workflows/build_snap.yaml@v24.0.6 | ||
|
||
smoke: | ||
name: Smoke test snap | ||
|
@@ -26,6 +26,9 @@ jobs: | |
- lint | ||
- build | ||
steps: | ||
- name: Uninstall Postgresql | ||
run: | | ||
sudo apt --purge remove postgresql* | ||
Comment on lines
+29
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Workaround for 24.04, which has preinstalled PG 16 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you mean GH runner 24.04? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. |
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install tox & poetry | ||
|
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.
Version that works on 24.04
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.
would recommend v29, since it includes this fix: canonical/data-platform-workflows#269