Skip to content

Commit ca99615

Browse files
committed
Try to fix Actions again 3
1 parent 756d10e commit ca99615

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust_ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ env:
33
RUSTFLAGS: -Dwarnings
44
CARGO_TERM_COLOR: always
55
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6-
PG_VER: 16
6+
PG_VER: 17
77

88
on:
99
pull_request_target:
@@ -45,6 +45,9 @@ jobs:
4545
- uses: actions-rust-lang/setup-rust-toolchain@v1
4646
- name: Install PostgreSQL
4747
run: |
48+
sudo apt install -y wget gnupg
49+
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
50+
wget --quiet -O- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
4851
sudo apt update -y -qq
4952
sudo apt install -y postgresql-server-dev-$PG_VER
5053
- name: Install cargo pgrx

0 commit comments

Comments
 (0)