Skip to content

Commit

Permalink
feat(ci): add libpq-dev to Metasploit workflow
Browse files Browse the repository at this point in the history
Updates the GitHub Actions workflow for Metasploit to include 
the installation of the libpq-dev package alongside libpcap-dev. 
This change ensures that the necessary dependencies for PostgreSQL 
are available during the build process.
  • Loading branch information
matusso committed Feb 2, 2025
1 parent fd210c8 commit 5a05ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/metasploit-framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
${{ runner.os }}-buildx-
- name: Install libpcap
run: sudo apt update && sudo apt install -y libpcap-dev
run: sudo apt update && sudo apt install -y libpcap-dev libpq-dev

# Set up Ruby environment
- name: Set up Ruby
Expand Down

0 comments on commit 5a05ef3

Please sign in to comment.