diff options
author | Josh Spicer <joshspicer@github.com> | 2022-06-30 04:28:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 04:28:07 +0300 |
commit | 6eab72c681392c1df95500035d87a6e3a1c54642 (patch) | |
tree | a28f29f4c47d6102b61a1b70347866533ea5a4cc /.github | |
parent | 1c9ce8370da7b1d19a646426295eaba447068e78 (diff) |
update workflows for cli to https://github.com/devcontainers/cli/pull/11/commits/4ea8a7cb4693fb442faf9ddb214848218256b334
Diffstat (limited to '.github')
-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` |