Skip to content

chore(deps): update fedora:45 docker digest to aacbc26 #24487

chore(deps): update fedora:45 docker digest to aacbc26

chore(deps): update fedora:45 docker digest to aacbc26 #24487

Workflow file for this run

name: registry
on:
workflow_dispatch:
push:
branches: [release]
pull_request:
branches: [main]
permissions: {}
jobs:
trusted:
if: ${{ (github.actor == 'jdx' || github.actor == 'mise-en-dev') && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && (github.event.pull_request.user.login == 'jdx' || github.event.pull_request.user.login == 'mise-en-dev'))) }}
permissions:
contents: read
uses: ./.github/workflows/registry-impl.yml
with:
trusted: true
secrets:
MISE_GH_TOKEN: ${{ secrets.MISE_GH_TOKEN }}
MISE_VERSIONS_API_SECRET: ${{ secrets.MISE_VERSIONS_API_SECRET }}
untrusted:
if: ${{ (github.actor != 'jdx' && github.actor != 'mise-en-dev') || (github.event_name == 'pull_request' && (github.event.pull_request.head.repo.full_name != github.repository || (github.event.pull_request.user.login != 'jdx' && github.event.pull_request.user.login != 'mise-en-dev'))) }}
permissions:
contents: read
uses: ./.github/workflows/registry-impl.yml
with:
trusted: false
registry-ci:
name: registry-ci
if: ${{ always() && !cancelled() && needs.trusted.result != 'cancelled' && needs.untrusted.result != 'cancelled' }}
permissions: {}
needs: [trusted, untrusted]
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Check selected workflow result
env:
TRUSTED_RESULT: ${{ needs.trusted.result }}
UNTRUSTED_RESULT: ${{ needs.untrusted.result }}
run: |
if [[ "$TRUSTED_RESULT" == success && "$UNTRUSTED_RESULT" == skipped ]] ||
[[ "$TRUSTED_RESULT" == skipped && "$UNTRUSTED_RESULT" == success ]]; then
exit 0
fi
echo "trusted=$TRUSTED_RESULT untrusted=$UNTRUSTED_RESULT"
exit 1