/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/update-docker-images.yml
51 строка
2 KB
renovate[bot]
chore(deps): update docker/login-action action to v4.6.0
06 авг 2026, 00:24
06 авг 2026, 00:24
b2099b0
Код
Авторство
О чём код?
name: update-docker-images # Update Docker images when the set of commands required present for testing # change. This is not perfect as it would be good to have the new commands # installed already at PR time, and at least at time the change lands in the # default branch. That way it'd be tested immediately then with images # containing it, instead of later along with some other, completely unrelated # change. on: push: paths: - test/test-cmd-list.txt - test/docker/*/Dockerfile - test/docker/*/install-packages.sh workflow_dispatch: permissions: {} jobs: update-test-image: runs-on: ubuntu-latest if: github.repository_owner == 'scop' && github.ref == 'refs/heads/main' strategy: fail-fast: false matrix: include: - dist: almalinux9 - dist: alpine - dist: centos7 - dist: debian10 - dist: fedoradev - dist: ubuntu14 permissions: packages: write # Get token that can write to ghcr.io steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 with: registry: ghcr.io username: ${{github.repository_owner}} password: ${{secrets.GITHUB_TOKEN}} - uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: context: test file: test/docker/${{matrix.dist}}/Dockerfile tags: | ghcr.io/scop/bash-completion/test:${{matrix.dist}} push: true