diff --git a/.github/workflows/lint-markdown-links.yml b/.github/workflows/lint-markdown-links.yml index aeb424691..47d69eb5c 100644 --- a/.github/workflows/lint-markdown-links.yml +++ b/.github/workflows/lint-markdown-links.yml @@ -20,4 +20,4 @@ jobs: folder-path: '.' max-depth: -1 check-modified-files-only: 'yes' - base-branch: 'main' + base-branch: 'release-2.20' diff --git a/internal/resolve/resolve_test.go b/internal/resolve/resolve_test.go index 196c29669..8e04ba673 100644 --- a/internal/resolve/resolve_test.go +++ b/internal/resolve/resolve_test.go @@ -33,7 +33,7 @@ func Test_GetFile(t *testing.T) { assert.Equal(t, currFile, file, "Local files should not be copied to the dst-folder") }) t.Run("Retrieve remote file", func(t *testing.T) { - file, err := File("https://raw.githubusercontent.com/kyma-project/cli/main/LICENCE", testDir) + file, err := File("https://raw.githubusercontent.com/kyma-project/cli/release-2.20/LICENCE", testDir) assert.NoError(t, err) assert.Equal(t, filepath.Join(testDir, "LICENCE"), file, "Remote files should be copied to the dst-folder") })