Skip to content

Commit

Permalink
Try to fix Actions again 3
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthewizard committed Nov 14, 2024
1 parent 756d10e commit ca99615
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rust_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ env:
RUSTFLAGS: -Dwarnings
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PG_VER: 16
PG_VER: 17

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

0 comments on commit ca99615

Please sign in to comment.