This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
Bump github.com/docker/docker from 1.4.2-0.20190219180918-740349757396 to 24.0.7+incompatible #7
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: Test container-diff Action | |
on: | |
pull_request: [] | |
jobs: | |
test-container-diff: | |
name: Test container-diff | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Add more test cases here as necessary | |
args: | |
- vanessa/salad --type=file --output=./data.json --json | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run container-diff | |
uses: ./actions | |
with: | |
args: ${{ matrix.args }} | |
- name: View output | |
run: cat ./data.json |