Bump python from 3.12.7-alpine to 3.13.0-alpine #670
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 1 * * 0' | |
env: | |
IMAGE_NAME: haxorof/ansible-core | |
LATEST_OS: alpine | |
LATEST_VERSION: v2.17 | |
# https://download.docker.com/linux/static/stable/x86_64/ | |
DOCKER_CLI_VERSION: "26.1.3" | |
# https://github.com/tianon/gosu/releases/ | |
GOSU_VERSION: "1.17" | |
jobs: | |
build_push: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [alpine, almalinux, ubuntu] | |
version: [v2.15, v2.16, v2.17] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare | |
id: prep | |
run: | | |
cp requirements/${MATRIX_VERSION}/requirements.txt requirements/requirements.txt | |
TAGS="${IMAGE_NAME}:${MATRIX_VERSION}-${MATRIX_OS}" | |
if [[ "$MATRIX_OS" == "$LATEST_OS" ]]; then | |
TAGS="${TAGS},${IMAGE_NAME}:$MATRIX_VERSION" | |
if [[ "$MATRIX_VERSION" == "$LATEST_VERSION" ]]; then | |
TAGS="${TAGS},${IMAGE_NAME}:latest-${MATRIX_OS},${IMAGE_NAME}:latest" | |
fi | |
elif [[ "$MATRIX_VERSION" == "$LATEST_VERSION" ]]; then | |
TAGS="${TAGS},${IMAGE_NAME}:latest-${MATRIX_OS}" | |
fi | |
echo "tags=${TAGS}" >> $GITHUB_OUTPUT | |
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT | |
env: | |
MATRIX_OS: ${{ matrix.os }} | |
MATRIX_VERSION: ${{ matrix.version }} | |
# Since sudo is used this will complain and suggest gosu but that | |
# needs to be tested if gosu can replace sudo for Ansible use-cases. | |
# - name: Lint Dockerfile | |
# uses: docker://replicated/dockerfilelint:latest | |
# with: | |
# args: Dockerfile.${{ matrix.os }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3.3.0 | |
if: ${{ endsWith(github.ref, '/main') }} | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and Push | |
uses: docker/build-push-action@v6.9.0 | |
with: | |
labels: | | |
org.opencontainers.image.created=${{ steps.prep.outputs.created }} | |
org.opencontainers.image.source=${{ github.repositoryUrl }} | |
org.opencontainers.image.version=${{ matrix.version }} | |
org.opencontainers.image.revision=${{ github.sha }} | |
org.opencontainers.image.licenses=${{ github.event.repository.license.name }} | |
build-args: | | |
docker_version=${{ env.DOCKER_CLI_VERSION }} | |
gosu_version=${{ env.GOSU_VERSION }} | |
tags: ${{ steps.prep.outputs.tags }} | |
context: . | |
file: ./Dockerfile.${{ matrix.os }} | |
push: ${{ endsWith(github.ref, '/main') }} | |
dependabot: | |
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }} | |
needs: build_push | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
repository-projects: write | |
steps: | |
- name: Dependabot metadata | |
id: dependabot-metadata | |
uses: dependabot/fetch-metadata@v2.2.0 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Enable auto-merge for Dependabot PRs | |
if: ${{steps.dependabot-metadata.outputs.package-ecosystem == 'github_actions'}} | |
run: gh pr merge --auto --merge "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
update_docker_hub_description: | |
needs: build_push | |
runs-on: ubuntu-latest | |
if: ${{ endsWith(github.ref, '/main') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker Hub Description | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: ${{ env.IMAGE_NAME }} |