Skip to content

Commit 673b8e6

Browse files
committed
Disabled self-host for running actions
1 parent 4d443ad commit 673b8e6

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
# Run Gradle Wrapper Validation Action to verify the wrapper's checksum
2727
gradleValidation:
2828
name: Gradle Wrapper
29-
runs-on: self-hosted
29+
# runs-on: self-hosted
30+
runs-on: ubuntu-latest
3031
steps:
3132

3233
# Check out current repository
@@ -41,7 +42,8 @@ jobs:
4142
test:
4243
name: Test
4344
needs: gradleValidation
44-
runs-on: self-hosted
45+
# runs-on: self-hosted
46+
runs-on: ubuntu-latest
4547
steps:
4648

4749
# Setup Java 11 environment for the next steps
@@ -82,7 +84,8 @@ jobs:
8284
build:
8385
name: Build
8486
needs: test
85-
runs-on: self-hosted
87+
# runs-on: self-hosted
88+
runs-on: ubuntu-latest
8689
outputs:
8790
name: ${{ steps.properties.outputs.name }}
8891
version: ${{ steps.properties.outputs.version }}
@@ -150,7 +153,8 @@ jobs:
150153
verify:
151154
name: Verify
152155
needs: build
153-
runs-on: self-hosted
156+
# runs-on: self-hosted
157+
runs-on: ubuntu-latest
154158
steps:
155159

156160
# Setup Java 11 environment for the next steps
@@ -206,7 +210,8 @@ jobs:
206210
name: Release Draft
207211
if: github.event_name != 'pull_request'
208212
needs: [build, verify]
209-
runs-on: self-hosted
213+
# runs-on: self-hosted
214+
runs-on: ubuntu-latest
210215
steps:
211216

212217
# Check out current repository

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
# Prepare and publish the plugin to the Marketplace repository
1212
release:
1313
name: Publish Plugin
14-
runs-on: self-hosted
14+
# runs-on: self-hosted
15+
runs-on: ubuntu-latest
1516
steps:
1617

1718
# Setup Java 11 environment for the next steps
@@ -37,7 +38,8 @@ jobs:
3738
changelog:
3839
name: Update Changelog
3940
needs: release
40-
runs-on: self-hosted
41+
## runs-on: self-hosted
42+
runs-on: ubuntu-latest
4143
steps:
4244

4345
# Setup Java 11 environment for the next steps

0 commit comments

Comments
 (0)