Skip to content

Commit

Permalink
Fix: rust_g CI deps and use MariaDB instead of Mysql (#23)
Browse files Browse the repository at this point in the history
* Fix: rust_g CI deps

* Fix: use MariaDB instead of Mysql
  • Loading branch information
Bizzonium authored and Dimach committed Mar 8, 2024
1 parent afbe00b commit da326fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: eps1lon/actions-label-merge-conflict@v2.1.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish:
if: ( !contains(github.event.head_commit.message, '[ci skip]') )
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ on:
type: string
jobs:
run_integration_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
services:
mysql:
image: mysql:latest
image: mariadb:latest
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
options: --health-cmd="mariadb-admin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Restore BYOND cache
Expand Down

0 comments on commit da326fe

Please sign in to comment.