]> git.proxmox.com Git - wasi-libc.git/commitdiff
github actions: pin checkout action to v1 (#145)
authorSam Clegg <sbc@chromium.org>
Tue, 3 Dec 2019 17:15:26 +0000 (11:15 -0600)
committerGitHub <noreply@github.com>
Tue, 3 Dec 2019 17:15:26 +0000 (11:15 -0600)
master now contains a new v2 beta version of this action that no longer
supports "submodules".   We can update to v2 later once it stabilizes.

.github/workflows/main.yml

index bac948c84b5894e7429620fb4404f5c05d8c3ccb..e25ddaa7780d382e5ab3e73c0ca0f071a639fef8 100644 (file)
@@ -9,7 +9,7 @@ jobs:
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
     steps:
-    - uses: actions/checkout@master
+    - uses: actions/checkout@v1
       with:
         submodules: true
     - name: Install Rust (rustup)
@@ -32,7 +32,7 @@ jobs:
     name: Rustfmt
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout@master
+    - uses: actions/checkout@v1
       with:
         submodules: true
     - name: Install Rust