{"id":14969009,"url":"https://github.com/yakkadev/mariadb-actions","last_synced_at":"2026-01-28T04:39:35.318Z","repository":{"id":253115160,"uuid":"842410880","full_name":"YakkaDev/mariadb-actions","owner":"YakkaDev","description":"MariaDB Github Action.","archived":false,"fork":false,"pushed_at":"2024-08-14T16:14:13.000Z","size":22,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T10:41:33.124Z","etag":null,"topics":["actions","github","mariadb","server"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/setup-mariadb","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YakkaDev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"buy_me_a_coffee":"yakkadev"}},"created_at":"2024-08-14T09:46:28.000Z","updated_at":"2024-08-17T18:44:45.000Z","dependencies_parsed_at":"2024-10-11T02:40:45.744Z","dependency_job_id":null,"html_url":"https://github.com/YakkaDev/mariadb-actions","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.5,"last_synced_commit":"13669301b490750d12b5a315c80c81a75bfacf41"},"previous_names":["yakkadev/mariadb-actions"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YakkaDev%2Fmariadb-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YakkaDev%2Fmariadb-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YakkaDev%2Fmariadb-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YakkaDev%2Fmariadb-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YakkaDev","download_url":"https://codeload.github.com/YakkaDev/mariadb-actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253767718,"owners_count":21961163,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github","mariadb","server"],"created_at":"2024-09-24T13:40:56.479Z","updated_at":"2026-01-28T04:39:35.312Z","avatar_url":"https://github.com/YakkaDev.png","language":"JavaScript","funding_links":["https://buymeacoffee.com/yakkadev"],"categories":[],"sub_categories":[],"readme":"# MariaDB GitHub Action\n![Last Commit](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/YakkaDev/cbc0fc3d1258e0bc92c749fb5fbc0860/raw/git-last-commit-date.json)\n![Release Version](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/YakkaDev/cbc0fc3d1258e0bc92c749fb5fbc0860/raw/git-latest-release.json)\n![File Count](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/YakkaDev/cbc0fc3d1258e0bc92c749fb5fbc0860/raw/git-file-count.json)\n\n- [Introduction](#introduction)\n- [Usage](#usage)\n  - [Basic](#basic)\n  - [Advanced](#advanced)\n- [Options](#options)\n- [License](#license)\n- [Acknowledgments](#acknowledgments)\n\n## Introduction\nThis [GitHub Action](https://github.com/features/actions) sets up a MariaDB database in Docker container.\n\n[MariaDB GitHub Action](https://github.com/YakkaDev/mariadb-actions) based on the Docker container and is limited by Github Actions, which contains only Linux now. Therefore it does not work in Mac OS and Windows environment.\n\n## Usage\nBelow you will find some of the possible uses of this application.\n\n### Basic\nThis preset will create the `TEST` database on the MariaDB engine version `10.6.15` with the root password `123123`.\n```yml\nsteps:\n- uses: YakkaDev/mariadb-actions@v1.1.0\n  with:\n    version: '10.6.15'\n    database: 'TEST'\n    root pass: '123123'\n```\n\n### Advanced\nThis preset will create the `TEST` database with user `username` and password `userpass` on the MariaDB engine version `10.6.15` and characters set `utf8mb4` with the `random` root password.\n```yml\nsteps:\n- uses: YakkaDev/mariadb-actions@v1.1.0\n  with:\n    version: '10.6.15'\n    character: 'utf8mb4'\n    database: 'TEST'\n    user: 'username'\n    password: 'userpass'\n```\n\nSee Docker Hub for available [MariaDB](https://hub.docker.com/_/mariadb) versions.\n\n## Options\nBelow you will find all possible options of this application, as well as their description and default values.\n\n| Option         | Description                               | Requried | Default            |\n|----------------|-------------------------------------------|:--------:|--------------------|\n| host port      | Incoming port                             | No       | 3306               |\n| local port     | Сontainer port                            | No       | 3306               |\n| character      | The character set of MariaDB server       | No       | utf8mb4            |\n| collation      | The character collation of MariaDB server | No       | utf8mb4_general_ci |\n| version        | Version of MariaDB server                 | No       | latest             |\n| root pass      | Root user password                        | No       | RANDOM             |\n| database       | MariaDB default database                  | Yes      | -                  |\n| user           | User for created database                 | No       | root               |\n| password       | MariaDB user password                     | Yes      | -                  |\n\n## License\nThis project is released under the [MIT License](https://github.com/YakkaDev/mariadb-actions/LICENSE).\n\n## Acknowledgments\nThe application uses a Docker container based on [MariaDB](https://mariadb.org/) images.\n\n---\n\n\n\u003c!-- Security scan triggered at 2025-09-02 03:19:04 --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyakkadev%2Fmariadb-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyakkadev%2Fmariadb-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyakkadev%2Fmariadb-actions/lists"}