Skip to content

Bump docker/login-action from 2 to 3 #54

Bump docker/login-action from 2 to 3

Bump docker/login-action from 2 to 3 #54

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
BUILD_TAG: linguist:test
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/bake-action@v4
with:
targets: image-local
env:
DEFAULT_TAG: ${{ env.BUILD_TAG }}
-
name: Checkout test repo
uses: actions/checkout@v4
with:
repository: crazy-max/diun
path: diun
-
name: Test
run: |
docker run -t --rm -v "$(pwd)/diun:/repo" ${{ env.BUILD_TAG }}