Skip to content

Commit 013aa8b

Browse files
Tobianasihrasko
authored andcommitted
Update actions plugin to v6
https://github.com/actions/checkout/blob/main/README.md#checkout-v6 JIRA: LIGHTY-378 Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
1 parent 71a0be1 commit 013aa8b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
SONAR_ORGANIZATION: ${{ secrets.SONAR_ORGANIZATION }}
2020
SONAR_PROJECT_KEY: ${{ secrets.SONAR_PROJECT_KEY}}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Set up JDK 21
2424
uses: actions/setup-java@v3
2525
with:

.github/workflows/publish-rcgnmi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
steps:
3232
- name: Clone Repository
3333
if: ${{ github.event.inputs.checkout-ref == 'default' }}
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
- name: "Clone Repository, Ref: ${{ github.event.inputs.checkout-ref }}"
3636
if: ${{ github.event.inputs.checkout-ref != 'default' }}
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
3939
ref: ${{ github.event.inputs.checkout-ref }}
4040
- name: Set up JDK 21

.github/workflows/publish-rnc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
steps:
3232
- name: Clone Repository
3333
if: ${{ github.event.inputs.checkout-ref == 'default' }}
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
- name: "Clone Repository, Ref: ${{ github.event.inputs.checkout-ref }}"
3636
if: ${{ github.event.inputs.checkout-ref != 'default' }}
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v6
3838
with:
3939
ref: ${{ github.event.inputs.checkout-ref }}
4040
- name: Set up JDK 21

.github/workflows/test-lighty-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
shell: bash
2222
steps:
2323
- name: Clone Repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
- name: Set up JDK 21
2626
uses: actions/setup-java@v3
2727
with:

0 commit comments

Comments
 (0)