mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
91b8f85788
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
853 B
YAML
34 lines
853 B
YAML
---
|
|
name: CI - Main daily
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Every night at 3am
|
|
- cron: "0 3 * * *"
|
|
pull_request:
|
|
paths:
|
|
# Needs to refer to itself
|
|
- .github/workflows/ci-main-daily.yml
|
|
|
|
jobs:
|
|
test-container:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- docs
|
|
- version-2026-2
|
|
- version-2026-5
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v5
|
|
- run: |
|
|
set -euo pipefail
|
|
current="$(pwd)"
|
|
dir="/tmp/authentik/${{ matrix.version }}"
|
|
mkdir -p "${dir}/lifecycle/container"
|
|
cd "${dir}"
|
|
wget "https://${{ matrix.version }}.goauthentik.io/compose.yml" -O "${dir}/lifecycle/container/compose.yml"
|
|
"${current}/scripts/test_docker.sh"
|