From 8c7d0b17f2549fae51752c686e18145eef234e23 Mon Sep 17 00:00:00 2001 From: danveitch76 <45300973+danveitch76@users.noreply.github.com> Date: Sat, 9 Sep 2023 18:58:38 +0100 Subject: [PATCH] Bump actions/checkout from 3.5.3 to 4.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/builder.yml | 4 ++-- .github/workflows/lint.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 9a54f393..80ae8c4d 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -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 @@ -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 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4c862ecf..d4b8e5a7 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -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 @@ -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