Skip to content

Commit 8c7d0b1

Browse files
committed
Bump actions/checkout from 3.5.3 to 4.0.0
Bumps actions/checkout from 3.5.3 to 4.0.0. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option by @​simonbaird in actions/checkout#1067 Release 4.0.0 by @​takost in actions/checkout#1447 New Contributors @​takost made their first contribution in actions/checkout#1436 @​simonbaird made their first contribution in actions/checkout#1067 Full Changelog: actions/checkout@v3...v4.0.0 v3.6.0 What's Changed Mark test scripts with Bash'isms to be run via Bash by @​dscho in actions/checkout#1377 Add option to fetch tags even if fetch-depth > 0 by @​RobertWieczoreck in actions/checkout#579 Release 3.6.0 by @​luketomlinson in actions/checkout#1437 New Contributors @​RobertWieczoreck made their first contribution in actions/checkout#579 @​luketomlinson made their first contribution in actions/checkout#1437 Full Changelog: actions/checkout@v3.5.3...v3.6.0 Changelog Sourced from actions/checkout's changelog. v4.0.0 Support fetching without the --progress option Update to node20 v3.6.0 Fix: Mark test scripts with Bash'isms to be run via Bash Add option to fetch tags even if fetch-depth > 0 Commits 3df4ab1 Release 4.0.0 (#1447) 8b5e8b7 Support fetching without the --progress option (#1067) 97a652b Update default runtime to node20 (#1436) f43a0e5 Release 3.6.0 (#1437) 7739b9b Add option to fetch tags even if fetch-depth > 0 (#579) 96f5310 Mark test scripts with Bash'isms to be run via Bash (#1377) See full diff in compare view
1 parent 10df054 commit 8c7d0b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/builder.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
changed: ${{ steps.changed_addons.outputs.changed }}
1616
steps:
1717
- name: Check out the repository
18-
uses: actions/checkout@v3.5.3
18+
uses: actions/checkout@v4.0.0
1919

2020
- name: Get changed files
2121
id: changed_files
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Check out repository
66-
uses: actions/checkout@v3.5.3
66+
uses: actions/checkout@v4.0.0
6767
with:
6868
submodules: false
6969

.github/workflows/lint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
addons: ${{ steps.addons.outputs.addons_list }}
1919
steps:
2020
- name: ⤵️ Check out code from GitHub
21-
uses: actions/checkout@v3.5.3
21+
uses: actions/checkout@v4.0.0
2222

2323
- name: 🔍 Find add-on directories
2424
id: addons
@@ -33,7 +33,7 @@ jobs:
3333
path: ${{ fromJson(needs.find.outputs.addons) }}
3434
steps:
3535
- name: ⤵️ Check out code from GitHub
36-
uses: actions/checkout@v3.5.3
36+
uses: actions/checkout@v4.0.0
3737

3838
- name: 🚀 Run Home Assistant Add-on Lint
3939
uses: frenck/action-addon-linter@v2.13

0 commit comments

Comments
 (0)