From d0b28d5b8e786d70d98ff80ab3cba7a1e837d041 Mon Sep 17 00:00:00 2001 From: Onno Vos Date: Thu, 16 Jan 2025 13:35:59 +0100 Subject: [PATCH] Fix correct release version to hex --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db4c76e5..3309e03a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Take ownership of the checkout directory (Git CVE-2022-24765) + run: chown --recursive --reference=/ . + + - name: Allow for file ownership conflicts with Docker and GitHub Actions + run: git config --global --add safe.directory '*' + - name: Compile run: rebar3 compile