Skip to content

v0.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Jul 13:27
· 1195 commits to main since this release
da850da

⚠️ The way to authenticate with ghcr.io recently changed, while it used to be enough to provide a token set to a PAT or GITHUB_TOKEN, we now have to provide a username and a password where the password can be a PAT or GITHUB_TOKEN.

Something like

  docker:
    name: "Test if ghcr.io/updatecli/updatecli docker image published on registry"
    kind: dockerImage
    spec:
      image: "ghcr.io/updatecli/updatecli"
      token: '{{ requiredEnv "GITHUB_TOKEN" }}'

becomes

  docker:
    name: "Test if ghcr.io/updatecli/updatecli docker image published on registry"
    kind: dockerImage
    spec:
      image: "ghcr.io/updatecli/updatecli"
      username: '{{ requiredEnv "GITHUB_ACTOR" }}'
      password: '{{ requiredEnv "GITHUB_USERNAME" }}'

Changes

🚀 Features

  • Add runtime templating in configuration @olblak (#242)
  • Add username/password parameter for Docker Registry authentication @olblak (#246)

Contributors

@dependabot, @dependabot[bot] and @olblak