Skip to content

Commit

Permalink
fix some jobs on 2.20 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 committed Dec 4, 2024
1 parent 2ee106b commit 0238f43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-markdown-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
folder-path: '.'
max-depth: -1
check-modified-files-only: 'yes'
base-branch: 'main'
base-branch: 'release-2.20'
2 changes: 1 addition & 1 deletion internal/resolve/resolve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
})
Expand Down

0 comments on commit 0238f43

Please sign in to comment.