diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2024-06-17 11:25:28 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-06-17 14:37:37 +0000 |
commit | 0040a729d57bb4c02c78b6a14205e6f6de3f050f (patch) | |
tree | c903194871b2350ddd83355c54babca0e09e7874 | |
parent | 78fd195e6a78f1c58f3f9ec4189ca910bd0b3eab (diff) | |
download | nextcloud-server-0040a729d57bb4c02c78b6a14205e6f6de3f050f.tar.gz nextcloud-server-0040a729d57bb4c02c78b6a14205e6f6de3f050f.zip |
ci: use precise ref for 3rdparty check
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | .github/workflows/block-outdated-3rdparty.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/block-outdated-3rdparty.yml b/.github/workflows/block-outdated-3rdparty.yml index e43981afac0..d94df1a4896 100644 --- a/.github/workflows/block-outdated-3rdparty.yml +++ b/.github/workflows/block-outdated-3rdparty.yml @@ -39,7 +39,7 @@ jobs: - name: Last 3rdparty commit on target branch id: target run: | - echo "commit=$(git ls-remote https://github.com/nextcloud/3rdparty ${{ github.base_ref }} | awk '{ print $1}')" >> "$GITHUB_OUTPUT" + echo "commit=$(git ls-remote https://github.com/nextcloud/3rdparty refs/heads/${{ github.base_ref }} | awk '{ print $1}')" >> "$GITHUB_OUTPUT" - name: Compare if 3rdparty commits are different run: | |