From b52aa169f63a29ccc9e0b44d5feb94ee39ac6ac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:16:17 +0000 Subject: [PATCH 1/4] build(deps): bump actions/checkout from 4.1.6 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/a5ac7e51b41094c92402da3b24376905380afc29...692973e3d937129bcbf40652eb9f2f61becf3332) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/comment-rebase.yml | 2 +- .github/workflows/test-sh.yml | 4 ++-- .github/workflows/zsh-n.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/comment-rebase.yml b/.github/workflows/comment-rebase.yml index 491ee2f..1e7dfba 100644 --- a/.github/workflows/comment-rebase.yml +++ b/.github/workflows/comment-rebase.yml @@ -19,7 +19,7 @@ jobs: steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 with: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo diff --git a/.github/workflows/test-sh.yml b/.github/workflows/test-sh.yml index 9fefca7..573be4c 100644 --- a/.github/workflows/test-sh.yml +++ b/.github/workflows/test-sh.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: ☑️ ShellCheck uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 with: @@ -28,7 +28,7 @@ jobs: needs: [shellcheck] steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: ⚙️ Prepare run: | sudo apt-get update diff --git a/.github/workflows/zsh-n.yml b/.github/workflows/zsh-n.yml index ffca0f2..67f3437 100644 --- a/.github/workflows/zsh-n.yml +++ b/.github/workflows/zsh-n.yml @@ -22,7 +22,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: "⚡ Set matrix output" id: set-matrix run: | @@ -37,7 +37,7 @@ jobs: matrix: ${{ fromJSON(needs.zsh-matrix.outputs.matrix) }} steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: "⚡ Install dependencies" run: sudo apt update && sudo apt-get install -yq zsh - name: "⚡ zsh -n: ${{ matrix.file }}" From 4c9f1cfc1e8cbe40f2344665c072c462f01d5322 Mon Sep 17 00:00:00 2001 From: Sall Date: Sun, 23 Jun 2024 13:58:43 +0100 Subject: [PATCH 2/4] Update zsh-n.yml Signed-off-by: Sall --- .github/workflows/zsh-n.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zsh-n.yml b/.github/workflows/zsh-n.yml index 67f3437..ce73a34 100644 --- a/.github/workflows/zsh-n.yml +++ b/.github/workflows/zsh-n.yml @@ -22,7 +22,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@v4 - name: "⚡ Set matrix output" id: set-matrix run: | @@ -37,7 +37,7 @@ jobs: matrix: ${{ fromJSON(needs.zsh-matrix.outputs.matrix) }} steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@v4 - name: "⚡ Install dependencies" run: sudo apt update && sudo apt-get install -yq zsh - name: "⚡ zsh -n: ${{ matrix.file }}" From ba438d9b7f10b8a1155614a9a212dce019a9fb73 Mon Sep 17 00:00:00 2001 From: Sall Date: Sun, 23 Jun 2024 14:00:23 +0100 Subject: [PATCH 3/4] Update test-sh.yml Signed-off-by: Sall --- .github/workflows/test-sh.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-sh.yml b/.github/workflows/test-sh.yml index 573be4c..74cf960 100644 --- a/.github/workflows/test-sh.yml +++ b/.github/workflows/test-sh.yml @@ -16,9 +16,9 @@ jobs: runs-on: ubuntu-latest steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@v4 - name: ☑️ ShellCheck - uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 + uses: ludeeus/action-shellcheck@2.0.0 with: scandir: "./doc/install.sh" @@ -28,7 +28,7 @@ jobs: needs: [shellcheck] steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@v4 - name: ⚙️ Prepare run: | sudo apt-get update From 2b23f5ab5ae48f048d6effbf1cfbb8f0c9aae649 Mon Sep 17 00:00:00 2001 From: Sall Date: Sun, 23 Jun 2024 14:00:55 +0100 Subject: [PATCH 4/4] Update comment-rebase.yml Signed-off-by: Sall --- .github/workflows/comment-rebase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/comment-rebase.yml b/.github/workflows/comment-rebase.yml index 1e7dfba..fa93618 100644 --- a/.github/workflows/comment-rebase.yml +++ b/.github/workflows/comment-rebase.yml @@ -19,7 +19,7 @@ jobs: steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 + uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo