From e9b7e6c3bc5ad7d2c64d1c865402c5804dad5867 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Sun, 3 Mar 2024 08:30:23 +0100 Subject: [PATCH] workflows: Drop obsolete git safe.directory configuration `actions/checkout@v4` does this by default. --- .github/workflows/release.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6652e56..0ec05d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,10 +14,6 @@ jobs: # need this to also fetch tags fetch-depth: 0 - # https://github.blog/2022-04-12-git-security-vulnerability-announced/ - - name: Pacify git's permission check - run: git config --global --add safe.directory /__w - - name: Workaround for https://github.com/actions/checkout/pull/697 run: git fetch --force origin $(git describe --tags):refs/tags/$(git describe --tags)