diff options
author | Stephan <34886888+steled@users.noreply.github.com> | 2023-01-17 20:18:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 20:18:13 +0300 |
commit | 79588ef3da9abb2b536583130653b05030e8e5a6 (patch) | |
tree | f21894123c3c31df52f6e6ef8f11d88d45ff5272 /.github/workflows/test-all.yaml | |
parent | 1726222515e9d03c05f48bb4a03895afd09525a7 (diff) |
checkout action update (#404)
- updated the action checkout from v2 to 3 as required by action warning
Diffstat (limited to '.github/workflows/test-all.yaml')
-rw-r--r-- | .github/workflows/test-all.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index d2238a7..ab51a73 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -51,7 +51,7 @@ jobs: "mcr.microsoft.com/devcontainers/base:debian", ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: "Install latest devcontainer CLI" run: npm install -g @devcontainers/cli @@ -94,7 +94,7 @@ jobs: "nix", ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: "Install latest devcontainer CLI" run: npm install -g @devcontainers/cli @@ -106,7 +106,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: "Install latest devcontainer CLI" run: npm install -g @devcontainers/cli |