image pull not working on latest hugo_extended from gitlab shared runner

HI, Since today, gitlab shared runners are unable to pull image of hugo_extended. is that a runner issue or something changed with latest docker image ?

Running with gitlab-runner 16.1.0~beta.59.g83c66823 (83c66823)
  on blue-1.shared.runners-manager.gitlab.com/default j1aLDqxS, system ID: s_b437a71a38f9
  feature flags: FF_USE_IMPROVED_URL_MASKING:true
Preparing the "docker+machine" executor
00:03
Using Docker executor with image registry.gitlab.com/pages/hugo/hugo_extended:0.99.1 ...
Authenticating with credentials from job payload (GitLab Registry)
Pulling docker image registry.gitlab.com/pages/hugo/hugo_extended:0.99.1 ...
WARNING: Failed to pull image with policy "always": Error response from daemon: pull access denied for registry.gitlab.com/pages/hugo/hugo_extended, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (manager.go:237:0s)
ERROR: Job failed: failed to pull image "registry.gitlab.com/pages/hugo/hugo_extended:0.99.1" with specified policies [always]: Error response from daemon: pull access denied for registry.gitlab.com/pages/hugo/hugo_extended, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (manager.go:237:0s)

.gitlab-ci.yaml file:

image: registry.gitlab.com/pages/hugo/hugo_extended:latest

variables:
  GIT_SUBMODULE_STRATEGY: recursive
  HUGO_ENV: production

pages:
  script:
  - ls
  - cd site && hugo && mv public ../
  artifacts:
    paths:
    - public
  rules:
  - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
Edited by Achilleas Pipinellis