mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 09:33:19 +03:00
upgrade github runner (#3114)
This commit is contained in:
parent
eb8bc062d5
commit
36bfdb35f5
2
.github/workflows/build-private-images.yml
vendored
2
.github/workflows/build-private-images.yml
vendored
@ -11,7 +11,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'deploy-to-staging') }}
|
||||
runs-on: buildjet-4vcpu-ubuntu-2004
|
||||
runs-on: buildjet-16vcpu-ubuntu-2204
|
||||
|
||||
steps:
|
||||
- name: Docker meta
|
||||
|
2
.github/workflows/build-public-images.yml
vendored
2
.github/workflows/build-public-images.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: buildjet-4vcpu-ubuntu-2004
|
||||
runs-on: buildjet-16vcpu-ubuntu-2204
|
||||
|
||||
steps:
|
||||
- name: Docker meta
|
||||
|
10
.github/workflows/elixir.yml
vendored
10
.github/workflows/elixir.yml
vendored
@ -9,7 +9,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
name: Build and test
|
||||
runs-on: buildjet-4vcpu-ubuntu-2004
|
||||
runs-on: buildjet-16vcpu-ubuntu-2204
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
@ -18,6 +18,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:${{ matrix.postgres_version }}
|
||||
credentials:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
ports:
|
||||
- 5432:5432
|
||||
env:
|
||||
@ -30,6 +33,9 @@ jobs:
|
||||
|
||||
clickhouse:
|
||||
image: clickhouse/clickhouse-server:23.3.7.5-alpine
|
||||
credentials:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
ports:
|
||||
- 8123:8123
|
||||
env:
|
||||
@ -52,7 +58,7 @@ jobs:
|
||||
elixir-version: ${{steps.versions.outputs.elixir}}
|
||||
otp-version: ${{ steps.versions.outputs.erlang}}
|
||||
- name: Restore dependencies cache
|
||||
uses: actions/cache@v3
|
||||
uses: buildjet/cache@v3
|
||||
with:
|
||||
path: |
|
||||
deps
|
||||
|
Loading…
Reference in New Issue
Block a user