Skip to content

Commit 5dcb503

Browse files
authored
Merge pull request #11 from derskythe/dependabot/github_actions/actions/checkout-4
build(deps): bump actions/checkout from 3 to 4
2 parents 4612575 + 7761791 commit 5dcb503

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-with-firmwware.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
Write-Output ('RELEASE_VERSION={0}' -f $ReleaseVersion) >> $env:GITHUB_ENV
6161
6262
- name: Copy Firmware Files
63-
uses: actions/checkout@v3
63+
uses: actions/checkout@v4
6464
with:
6565
repository: "${{ matrix.url }}"
6666
clean: "true"
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Copy Repo Files
7171
if: ${{ matrix.src-included == 0 }}
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v4
7373
with:
7474
repository: "${{ vars.REPO_SELF }}"
7575
clean: "true"

.github/workflows/force-build-with-firmwware.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
Write-Output ('RELEASE_VERSION={0}' -f $ReleaseVersion) >> $env:GITHUB_ENV
5656
5757
- name: Copy Firmware Files
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959
with:
6060
repository: "${{ matrix.url }}"
6161
clean: "true"
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Copy Repo Files
6666
if: ${{ matrix.src-included == 0 }}
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868
with:
6969
repository: "${{ vars.REPO_SELF }}"
7070
clean: "true"

.github/workflows/ofw-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
Write-Output ('RELEASE_VERSION={0}' -f $ReleaseVersion) >> $env:GITHUB_ENV
5757
5858
- name: Copy Firmware Files
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060
with:
6161
repository: "${{ matrix.url }}"
6262
clean: "true"
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Copy Repo Files
6767
if: ${{ matrix.src-included == 0 }}
68-
uses: actions/checkout@v3
68+
uses: actions/checkout@v4
6969
with:
7070
repository: "${{ vars.REPO_SELF }}"
7171
clean: "true"

.github/workflows/version-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
RELEASE_TYPE: 0
3030
steps:
3131
- name: Copy Repo Files
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
repository: "${{ env.REPO_SELF }}"
3535
clean: "true"

0 commit comments

Comments
 (0)