diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-23 23:13:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 23:13:33 +0300 |
commit | 84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (patch) | |
tree | 74b7eddfc24ae22409baf5f3e4be28ce52d5881a /.github/workflows | |
parent | 0cafeee86296b9f19e6425055e0c4037eff41985 (diff) |
Fix bug - Python: Error installing os-provided python (#112)
* python: fix bug
* bump versions
Diffstat (limited to '.github/workflows')
-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 644a4ec..6b453f8 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v2 - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli + run: npm install -g @devcontainers/cli@0.12.1 - name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'" run: devcontainer 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 f1ac2d4..3e285a7 100644 --- a/.github/workflows/test-manual.yaml +++ b/.github/workflows/test-manual.yaml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli + run: npm install -g @devcontainers/cli@0.12.1 - name: "Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" run: devcontainer 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 b960039..7624701 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v2 - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli + run: npm install -g @devcontainers/cli@0.12.1 - name: "Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'" run: devcontainer 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 1fc90d5..cc71737 100644 --- a/.github/workflows/test-scenarios.yaml +++ b/.github/workflows/test-scenarios.yaml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli + run: npm install -g @devcontainers/cli@0.12.1 - name: "Running predefined test scenarios" run: devcontainer features test --scenarios `pwd`/test-scenarios -c `pwd` |