diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-20 08:38:39 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-20 08:38:39 -0400 |
commit | 81b27b7f16312469902798ab3c2a5bda72a8afa3 (patch) | |
tree | 07b5ff1096d25c8e982acafbc49ceaadb9925bcd /.github/workflows | |
parent | 4bc4198cc616240a1dded8338d18fbf73e42a4e2 (diff) | |
download | Sensor-Watch-81b27b7f16312469902798ab3c2a5bda72a8afa3.tar.gz Sensor-Watch-81b27b7f16312469902798ab3c2a5bda72a8afa3.tar.bz2 Sensor-Watch-81b27b7f16312469902798ab3c2a5bda72a8afa3.zip |
update checkout action (unsafe directory fix)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b1f6fab..4179e1d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Compile starter-project app run: make working-directory: 'apps/starter-project' @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Compile movement run: emmake make working-directory: 'movement/make' |