diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-20 08:50:25 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-20 08:50:25 -0400 |
commit | 8019563072d4be485ca69359ff0c3863cb03b6e7 (patch) | |
tree | 434503eaffdd26af93ed9d89fdc163d6f72c2dca /.github/workflows/build.yml | |
parent | 81b27b7f16312469902798ab3c2a5bda72a8afa3 (diff) | |
download | Sensor-Watch-8019563072d4be485ca69359ff0c3863cb03b6e7.tar.gz Sensor-Watch-8019563072d4be485ca69359ff0c3863cb03b6e7.tar.bz2 Sensor-Watch-8019563072d4be485ca69359ff0c3863cb03b6e7.zip |
work around CVE-2022-24765
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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' |