ci: release branch off: various fixes (#16137)

This commit is contained in:
Marc 'risson' Schmitt
2025-08-12 18:49:02 +02:00
committed by GitHub
parent 885f1cc018
commit 4e500030d1
2 changed files with 4 additions and 4 deletions
+2 -4
View File
@@ -35,8 +35,8 @@ jobs:
- name: Create version branch
run: |
current_major_version="$(uv version --short | grep -oE "^[0-9]{4}\.[0-9]{1,2}")"
git checkout -b "version/${current_major_version}"
git push origin "version/${current_major_version}"
git checkout -b "version-${current_major_version}"
git push origin "version-${current_major_version}"
bump-version-pr:
name: Open version bump PR
needs:
@@ -55,8 +55,6 @@ jobs:
token: ${{ steps.generate_token.outputs.token }}
- name: Setup authentik env
uses: ./.github/actions/setup
with:
dependencies: python,node
- name: Bump version
run: "make bump version=${{ inputs.next_version }}.0-rc1"
- name: Create pull request
+2
View File
@@ -10,6 +10,7 @@ from docker.types.healthcheck import Healthcheck
from authentik.core.tests.utils import create_test_flow
from authentik.crypto.models import CertificateKeyPair
from authentik.lib.config import CONFIG
from authentik.outposts.controllers.docker import DockerController
from authentik.outposts.models import (
DockerServiceConnection,
@@ -88,6 +89,7 @@ class OutpostDockerTests(DockerTestCase, ChannelsLiveServerTestCase):
pass
@pytest.mark.timeout(120)
@CONFIG.patch("outposts.container_image_base", "ghcr.io/goauthentik/dev-proxy:gh-main")
def test_docker_controller(self):
"""test that deployment requires update"""
controller = DockerController(self.outpost, self.service_connection)