Bump docker/setup-buildx-action from 3.9.0 to 3.10.0 #228
Workflow file for this run
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: Docker Build and Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build-and-test-ubuntu-docker-image: | |
name: Build and Test Ubuntu Docker Image | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Docker Buildx | |
# https://github.com/marketplace/actions/docker-setup-buildx | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.10.0 | |
# Docker Login | |
# https://github.com/marketplace/actions/docker-login | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3.3.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Build and Test Docker images | |
# https://github.com/marketplace/actions/build-and-push-docker-images | |
- name: Build Ubuntu Docker Image | |
uses: docker/build-push-action@v6.14.0 | |
with: | |
context: ubuntu | |
tags: | | |
ghcr.io/osinfra-io/ubuntu:test | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
load: true | |
- name: Test Ubuntu Docker Image | |
run: | | |
docker run --rm ghcr.io/osinfra-io/ubuntu:test |