Skip to content

Commit fa8aaa1

Browse files
committed
Use the right postgres client version too
1 parent ad9db22 commit fa8aaa1

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
uses: mikepenz/action-junit-report@v6
5252
if: always() # always run even if the previous step fails
5353
with:
54-
check_name: 'Vitest Report'
55-
report_paths: 'test/reports/TEST-*.xml'
54+
check_name: "Vitest Report"
55+
report_paths: "test/reports/TEST-*.xml"
5656
detailed_summary: true
5757
skip_success_summary: true
5858
- name: Archive HTML test reports
@@ -95,7 +95,7 @@ jobs:
9595
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
9696
wget -qO- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo tee /etc/apt/trusted.gpg.d/pgdg.asc &>/dev/null
9797
sudo apt-get update
98-
sudo apt-get install postgresql-client-17 -y
98+
sudo apt-get install postgresql-client-18 -y
9999
- name: Set up Ruby
100100
uses: ruby/setup-ruby@v1
101101
with:
@@ -108,8 +108,8 @@ jobs:
108108
uses: mikepenz/action-junit-report@v6
109109
if: always() # always run even if the previous step fails
110110
with:
111-
check_name: 'Minitest Report'
112-
report_paths: 'test/reports/TEST-*.xml'
111+
check_name: "Minitest Report"
112+
report_paths: "test/reports/TEST-*.xml"
113113
detailed_summary: true
114114
skip_success_summary: true
115115
- name: Archive HTML test reports
@@ -252,9 +252,9 @@ jobs:
252252
uses: clearlyip/code-coverage-report-action@v6
253253
id: code_coverage_report_action
254254
with:
255-
filename: 'merged-coverage.xml'
255+
filename: "merged-coverage.xml"
256256
fail_on_negative_difference: true
257-
artifact_download_workflow_names: 'ci,cron'
257+
artifact_download_workflow_names: "ci,cron"
258258
only_list_changed_files: true
259259
- name: Add Coverage PR Comment
260260
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)