Bump golang.org/x/crypto from 0.21.0 to 0.31.0 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DEB Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential debhelper dnsmasq iproute2 isc-dhcp-client libpcap-dev ntfs-3g openssh-client openvswitch-switch qemu-kvm qemu-utils | |
- name: Build Deb package | |
id: deb | |
run: | | |
chmod +x ./packaging/debian/build.bash | |
./packaging/debian/build.bash | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: minimega-deb | |
path: ./*.deb |