diff options
author | Valery Piashchynski <[email protected]> | 2021-01-28 00:46:22 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-28 00:46:22 +0300 |
commit | da2b4e81c523be98f1c845ff0711d9705d048cc5 (patch) | |
tree | c8f056dc5682e6e75cedf057e8a73453628aade4 | |
parent | 821a58a6ea55d75374fd5872cefa8465275daaea (diff) |
self-hosted on linux
-rw-r--r-- | .github/workflows/linux.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 27df293a..87ea8b35 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ ubuntu-20.04 ] + os: [ self-hosted ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 76aecc4f..77f9cfda 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,7 +20,7 @@ jobs: matrix: php: [ "7.4", "8.0" ] go: [ "1.14", "1.15" ] - os: [ self-hosted ] + os: [ macos-latest ] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> |