Skip to content

Commit

Permalink
Update workflow to use self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitinbabariya committed Oct 4, 2024
1 parent 86107de commit 11d16c0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
CodeQL-Build:

# CodeQL runs on ubuntu-latest and windows-latest
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
docker:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
test-e2e:
name: Run end-to-end tests
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Setup k3s
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v1
- name: Setup Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-go:
name: Lint Go code
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
args: --timeout 5m
build:
name: Build
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Set up Go
uses: actions/setup-go@v2
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

codegen:
name: Verify Codegen
runs-on: ubuntu-latest
runs-on: self-hosted
env:
GOPATH: /home/runner/go
PROTOC_ZIP: protoc-3.12.3-linux-x86_64.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
release-images:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
release-artifacts:
runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- name: Checkout
Expand Down

0 comments on commit 11d16c0

Please sign in to comment.