Skip to content

Commit

Permalink
feat: github workflow init
Browse files Browse the repository at this point in the history
Signed-off-by: Rudra Gupta <grudra7714@gmail.com>
  • Loading branch information
grudra7714 committed Sep 25, 2024
1 parent 7c239cf commit 290cd70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Privateer repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: privateerproj/privateer
path: privateer

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.x
go-version: 1.22

- name: Install dependencies
run: |
Expand All @@ -39,13 +39,13 @@ jobs:
./privateer help
- name: Archive release artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: privateer/release/

- name: Archive help output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: help-output
path: privateer/release/help-output.txt

0 comments on commit 290cd70

Please sign in to comment.