From dbcd6bba671d3bca2f5ee3e17ef9783932f0a6ce Mon Sep 17 00:00:00 2001 From: Adam Fisk Date: Mon, 30 Oct 2023 17:33:48 -0400 Subject: [PATCH] run on demand --- .github/workflows/go.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 35ee178b4..840ad2e2a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,6 +5,8 @@ on: branches: [ main ] pull_request: branches: [ main ] + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: jobs: @@ -12,11 +14,11 @@ jobs: runs-on: group: large-runners steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install libpcap run: sudo apt-get install libpcap-dev - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: 1.19 - name: Granting private modules access