Bump golang.org/x/crypto from 0.21.0 to 0.31.0 #4
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: RPM 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 rpm dnsmasq iproute2 isc-dhcp-client libpcap-dev ntfs-3g openssh-client openvswitch-switch qemu-kvm qemu-utils | |
- name: Build RPM package | |
id: rpm | |
run: | | |
chmod +x ./packaging/rpm/build.bash | |
./packaging/rpm/build.bash | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: minimega-rpm | |
path: ./packaging/rpm/rpmbuild/RPMS/* |