diff options
-rw-r--r-- | .github/workflows/test-all.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test-manual.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test-scenarios.yaml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index 30d96a3..fd4e50e 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -43,4 +43,4 @@ jobs: - uses: actions/checkout@v2 - name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.6.0-jospicer01.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` + run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml index 7b4676a..4d637d2 100644 --- a/.github/workflows/test-manual.yaml +++ b/.github/workflows/test-manual.yaml @@ -22,4 +22,4 @@ jobs: - uses: actions/checkout@v2 - name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.6.0-jospicer01.tgz features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} + run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index 3607835..86b492d 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -56,4 +56,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.6.0-jospicer01.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` + run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd` diff --git a/.github/workflows/test-scenarios.yaml b/.github/workflows/test-scenarios.yaml index 4f9446f..61e3026 100644 --- a/.github/workflows/test-scenarios.yaml +++ b/.github/workflows/test-scenarios.yaml @@ -13,4 +13,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: " Running predefined test scenarios" - run: npx --yes ./devcontainers-cli-0.6.0-jospicer01.tgz features test --scenarios `pwd`/test-scenarios -c `pwd` + run: npx --yes ./devcontainers-cli-0.7.0-jospicer01.tgz features test --scenarios `pwd`/test-scenarios -c `pwd` |