Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to GH hosted runners #7

Merged
merged 1 commit into from
May 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ env:

jobs:
Run-CI-Script:
runs-on: [self-hosted, medium, amd64]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: scripts/ci.sh

build-amd64:
runs-on: [self-hosted, medium, amd64]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

build-arm64:
runs-on: [self-hosted, medium, arm64]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
build-amd64:
runs-on: [self-hosted, medium, amd64]
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

build-arm64:
runs-on: [self-hosted, medium, arm64]
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

multi-arch-manifest:
runs-on: [self-hosted, medium, amd64]
runs-on: ubuntu-22.04
needs: [build-amd64, build-arm64]
permissions:
contents: read
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
short-description: "A container image which will automatically register itself as a strongDM gateway."

github-release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [multi-arch-manifest]
steps:
- run: "echo \"RELEASE_TAG=${GITHUB_REF#refs/tags/}\" >> $GITHUB_ENV"
Expand Down