Skip to content

Commit 5627031

Browse files
authored
Merge pull request #1025 from Romanitho/dependabot/github_actions/develop/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 21652c0 + 246d0c3 commit 5627031

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/GA_Mega-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
# Git Checkout
3535
- name: Checkout Code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
fetch-depth: 0

.github/workflows/GitFlow_Create-Release-Branch-and-PR.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
# Step 2: Checkout the develop branch which contains all approved features
3737
- name: Checkout code
38-
uses: actions/checkout@v4.2.2
38+
uses: actions/checkout@v5
3939
with:
4040
ref: develop # Always create releases from develop branch
4141
fetch-depth: 0

.github/workflows/GitFlow_Make-Release-and-Sync-to-Dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
# Step 1: Checkout the code from the main branch after merge
3131
- name: Checkout code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
token: ${{ secrets.GH_PAT_SYNC }}
3535
lfs: "true"
@@ -141,7 +141,7 @@ jobs:
141141
needs: build
142142
steps:
143143
- name: Checkout code
144-
uses: actions/checkout@v4
144+
uses: actions/checkout@v5
145145
with:
146146
fetch-depth: 0
147147
token: ${{ secrets.GH_PAT_SYNC }}

.github/workflows/GitFlow_Nightly-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# Step 1: Checkout the develop branch for nightly builds
3030
- name: Checkout code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
lfs: "true"
3434
fetch-depth: 0

0 commit comments

Comments
 (0)