From 81b27b7f16312469902798ab3c2a5bda72a8afa3 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 20 Apr 2022 08:38:39 -0400 Subject: update checkout action (unsafe directory fix) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') 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' -- cgit v1.2.3 From 8019563072d4be485ca69359ff0c3863cb03b6e7 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 20 Apr 2022 08:50:25 -0400 Subject: work around CVE-2022-24765 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4179e1d8..909d9a24 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Work around CVE-2022-24765 + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Compile starter-project app run: make working-directory: 'apps/starter-project' -- cgit v1.2.3 From 35d1f5e647ac1b5fcccdb43ec58058587dd5301b Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Sat, 30 Apr 2022 08:35:30 -0500 Subject: add CVE-2022-24765 to build-simulator --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 909d9a24..3ed1ff26 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Work around CVE-2022-24765 + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Compile movement run: emmake make working-directory: 'movement/make' -- cgit v1.2.3