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:36:34 +0000 |
commit | df976b4cf4176f38bc64dc64cef32a3836f22b42 (patch) | |
tree | 4c262a102bf79525b4f0ff7a28648cadb67ad932 | |
parent | 635f83cc734509ba3e4c2cde4d5b7cc7b96022de (diff) | |
download | nextcloud-server-df976b4cf4176f38bc64dc64cef32a3836f22b42.tar.gz nextcloud-server-df976b4cf4176f38bc64dc64cef32a3836f22b42.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: | |