1 2 3 4 5 6 7 8 9 10 11 12 13
name: docker-action on: [push] jobs: scan: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v5 - uses: docker://alpine:3.20 with: args: echo hello from alpine - uses: ./actions/build-image