This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #22
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 |