ci: Updated github actions to use full urls
This commit is contained in:
parent
1f2cc4b05a
commit
5ff50a9635
2 changed files with 4 additions and 4 deletions
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the code
|
- name: Checkout the code
|
||||||
uses: actions/checkout@v5
|
uses: https://github.com/actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
|
||||||
|
|
@ -48,7 +48,7 @@ jobs:
|
||||||
|
|
||||||
- name: Cache Maven Repository
|
- name: Cache Maven Repository
|
||||||
id: cache-maven
|
id: cache-maven
|
||||||
uses: actions/cache@v4
|
uses: https://github.com/actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
# The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch.
|
# The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch.
|
||||||
|
|
|
||||||
4
.github/workflows/release.yaml
vendored
4
.github/workflows/release.yaml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the code
|
- name: Checkout the code
|
||||||
uses: actions/checkout@v5
|
uses: https://github.com/actions/checkout@v5
|
||||||
|
|
||||||
- name: Retrieve project metadata
|
- name: Retrieve project metadata
|
||||||
uses: https://github.com/radcortez/project-metadata-action@main
|
uses: https://github.com/radcortez/project-metadata-action@main
|
||||||
|
|
@ -78,7 +78,7 @@ jobs:
|
||||||
|
|
||||||
- name: Cache Maven Repository
|
- name: Cache Maven Repository
|
||||||
id: cache-maven
|
id: cache-maven
|
||||||
uses: actions/cache@v4
|
uses: https://github.com/actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.m2/repository
|
path: ~/.m2/repository
|
||||||
# The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch.
|
# The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue