Skip to content

Commit

Permalink
fix provisioning; update ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Pennebaker committed Oct 2, 2024
1 parent 32b1e7d commit 6212c6f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: # yamllint disable-line rule:truthy
- cron: "0 0 * * 1"
jobs:
Audit:
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
env:
GOPATH: "/home/runner/go"
steps:
Expand All @@ -16,8 +16,8 @@ jobs:
- uses: "actions/checkout@v4"
- run: "sudo apt-get update"
- run: "sudo apt-get install -y cargo curl make"
- run: "curl -LO https://go.dev/dl/go1.23.0.linux-amd64.tar.gz"
- run: "sudo tar -C /usr/local -xzf go1.23.0.linux-amd64.tar.gz"
- run: "curl -LO https://go.dev/dl/go1.23.2.linux-amd64.tar.gz"
- run: "sudo tar -C /usr/local -xzf go1.23.2.linux-amd64.tar.gz"
- run: "curl -LO https://downloads.snyk.io/cli/stable/snyk-linux"
- run: "sudo cp snyk-linux /bin/snyk"
- run: "sudo chmod a+x /bin/snyk"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: # yamllint disable-line rule:truthy
pull_request:
jobs:
Lint:
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
env:
GOPATH: "/home/runner/go"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubberstamp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on: # yamllint disable-line rule:truthy
- cron: "0 0 1 * *"
jobs:
Audit:
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
steps:
- uses: "actions/checkout@v4"
- run: "sudo apt-get update"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: # yamllint disable-line rule:truthy
pull_request:
jobs:
Test:
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
env:
GOPATH: "/home/runner/go"
steps:
Expand Down
2 changes: 0 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ all:
go install golang.org/x/vuln/cmd/govulncheck@latest
go install honnef.co/go/tools/cmd/[email protected]
go mod tidy

npm install -g snyk

0 comments on commit 6212c6f

Please sign in to comment.