Skip to content

Commit 9d09065

Browse files
committed
use ubuntu-latest instead of self-hosted runner
1 parent 9c5ce87 commit 9d09065

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/backend-converted-types-check.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ on:
1313
- 'frontend/types/api/**'
1414
branches:
1515
- '*'
16+
workflow_dispatch:
17+
inputs:
18+
branch:
19+
description: 'Branch to run the workflow on'
20+
required: true
21+
default: 'staging'
1622

1723
concurrency:
1824
group: ${{ github.workflow }}-${{ github.ref }}
@@ -26,13 +32,14 @@ permissions:
2632
jobs:
2733
build:
2834
name: converted-types-check
29-
runs-on: self-hosted
35+
runs-on: ubuntu-latest
3036
steps:
31-
- uses: actions/checkout@v3
32-
- uses: actions/setup-go@v4
37+
- uses: actions/checkout@v4
38+
- uses: actions/setup-go@v5
3339
with:
3440
go-version-file: 'backend/go.mod'
3541
cache-dependency-path: 'backend/go.sum'
42+
cache: true
3643
- name: Check if all backend-types have been converted to frontend-types
3744
working-directory: backend
3845
run: |

0 commit comments

Comments
 (0)