File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
.github/actions/docker-push-variables
authentik/outposts/controllers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 4444 ]
4545 if not prerelease :
4646 image_tags += [
47- f"{ name } :latest" ,
4847 f"{ name } :{ version_family } " ,
4948 ]
5049else :
Original file line number Diff line number Diff line change 1313from structlog .stdlib import get_logger
1414from yaml import safe_dump
1515
16+ from authentik import __version__
1617from authentik .outposts .apps import MANAGED_OUTPOST
1718from authentik .outposts .controllers .base import BaseClient , BaseController , ControllerException
1819from authentik .outposts .docker_ssh import DockerInlineSSH , SSHManagedExternallyException
@@ -184,7 +185,7 @@ def try_pull_image(self):
184185 try :
185186 self .client .images .pull (image )
186187 except DockerException : # pragma: no cover
187- image = f"ghcr.io/goauthentik/{ self .outpost .type } :latest "
188+ image = f"ghcr.io/goauthentik/{ self .outpost .type } :{ __version__ } "
188189 self .client .images .pull (image )
189190 return image
190191
You can’t perform that action at this time.
0 commit comments