├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yaml └── workflows │ ├── build-kernel.yaml │ ├── lint-pr.yaml │ ├── release-please.yaml │ ├── release.yml │ └── update-runner-version.yaml ├── .release-please-manifest.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── kernels ├── kernel-arm64-4.14.config ├── kernel-arm64-5.10.config ├── kernel-x86_64-4.14.config └── kernel-x86_64-5.10.config ├── release-please-config.json ├── ubuntu20.04 ├── CHANGELOG.md ├── Dockerfile └── overlay │ └── etc │ ├── hosts │ ├── resolv.conf │ └── systemd │ └── system │ └── fireactions.service └── ubuntu22.04 ├── CHANGELOG.md ├── Dockerfile └── overlay └── etc ├── hosts ├── resolv.conf └── systemd └── system └── fireactions.service /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/build-kernel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/workflows/build-kernel.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/workflows/lint-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/workflows/release-please.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-runner-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.github/workflows/update-runner-version.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @konradasb 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/README.md -------------------------------------------------------------------------------- /kernels/kernel-arm64-4.14.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/kernels/kernel-arm64-4.14.config -------------------------------------------------------------------------------- /kernels/kernel-arm64-5.10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/kernels/kernel-arm64-5.10.config -------------------------------------------------------------------------------- /kernels/kernel-x86_64-4.14.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/kernels/kernel-x86_64-4.14.config -------------------------------------------------------------------------------- /kernels/kernel-x86_64-5.10.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/kernels/kernel-x86_64-5.10.config -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/release-please-config.json -------------------------------------------------------------------------------- /ubuntu20.04/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu20.04/CHANGELOG.md -------------------------------------------------------------------------------- /ubuntu20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu20.04/Dockerfile -------------------------------------------------------------------------------- /ubuntu20.04/overlay/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu20.04/overlay/etc/hosts -------------------------------------------------------------------------------- /ubuntu20.04/overlay/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu20.04/overlay/etc/resolv.conf -------------------------------------------------------------------------------- /ubuntu20.04/overlay/etc/systemd/system/fireactions.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu20.04/overlay/etc/systemd/system/fireactions.service -------------------------------------------------------------------------------- /ubuntu22.04/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu22.04/CHANGELOG.md -------------------------------------------------------------------------------- /ubuntu22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu22.04/Dockerfile -------------------------------------------------------------------------------- /ubuntu22.04/overlay/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu22.04/overlay/etc/hosts -------------------------------------------------------------------------------- /ubuntu22.04/overlay/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu22.04/overlay/etc/resolv.conf -------------------------------------------------------------------------------- /ubuntu22.04/overlay/etc/systemd/system/fireactions.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hostinger/fireactions-images/HEAD/ubuntu22.04/overlay/etc/systemd/system/fireactions.service --------------------------------------------------------------------------------