Skip to content

Commit

Permalink
Bump actions/checkout from 3.5.3 to 4.0.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
danveitch76 committed Sep 9, 2023
1 parent 10df054 commit 8c7d0b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builder.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
changed: ${{ steps.changed_addons.outputs.changed }}
steps:
- name: Check out the repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.0.0

- name: Get changed files
id: changed_files
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.0.0
with:
submodules: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Expand Up @@ -18,7 +18,7 @@ jobs:
addons: ${{ steps.addons.outputs.addons_list }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.0.0

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

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

0 comments on commit 8c7d0b1

Please sign in to comment.