From de6dd534c7a91d778dbe465c25a19e23197442bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 17:10:44 +0000 Subject: [PATCH] chore(deps): bump the all group across 1 directory with 5 updates Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.5` | `4.1.6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `5.3.0` | `6.0.1` | | [github/codeql-action](https://github.com/github/codeql-action) | `2.13.4` | `3.25.5` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `5.0.0` | `5.1.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.0.4` | `2.0.5` | Updates `actions/checkout` from 4.1.5 to 4.1.6 - [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/44c2b7a8a4ea60a981eaca3cf939b5f4305c123b...a5ac7e51b41094c92402da3b24376905380afc29) Updates `golangci/golangci-lint-action` from 5.3.0 to 6.0.1 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/38e1018663fa5173f3968ea0777460d3de38f256...a4f60bb28d35aeee14e6880718e0c85ff1882e64) Updates `github/codeql-action` from 2.13.4 to 3.25.5 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/cdcdbb579706841c47f7063dda365e292e5cad7a...b7cec7526559c32f1616476ff32d17ba4c59b2d6) Updates `goreleaser/goreleaser-action` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8...5742e2a039330cbb23ebf35f046f814d4c6ff811) Updates `softprops/action-gh-release` from 2.0.4 to 2.0.5 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/9d7c94cfd0a1f3ed45544c887983e9fa900f0564...69320dbe05506a9a39fc8ae11030b214ec2d1f87) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/code.yml | 4 ++-- .github/workflows/codeql.yml | 8 ++++---- .github/workflows/docs.yml | 2 +- .github/workflows/gomod.yml | 2 +- .github/workflows/inno.yml | 2 +- .github/workflows/markdown.yml | 2 +- .github/workflows/merge_contributions_pr.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/scoop.yml | 2 +- .github/workflows/winget.yml | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 7aac76b..a496be6 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -16,9 +16,9 @@ jobs: with: go-version: 1.22 - name: Checkout code - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Golang CI - uses: golangci/golangci-lint-action@38e1018663fa5173f3968ea0777460d3de38f256 + uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 with: working-directory: src - name: Unit Tests diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8149dc3..b29103d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,12 +19,12 @@ jobs: with: go-version: 1.22 - name: Checkout code - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Initialize CodeQL - uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a + uses: github/codeql-action/init@b7cec7526559c32f1616476ff32d17ba4c59b2d6 with: languages: go - name: Autobuild - uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a + uses: github/codeql-action/autobuild@b7cec7526559c32f1616476ff32d17ba4c59b2d6 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a + uses: github/codeql-action/analyze@b7cec7526559c32f1616476ff32d17ba4c59b2d6 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cad2437..86fd778 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest name: Build and Deploy Job steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 with: submodules: true - name: Build And Deploy 🚀 diff --git a/.github/workflows/gomod.yml b/.github/workflows/gomod.yml index 80660e2..4d8d186 100644 --- a/.github/workflows/gomod.yml +++ b/.github/workflows/gomod.yml @@ -17,7 +17,7 @@ jobs: with: go-version: 1.22 - name: Checkout code - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Check for unused dependencies run: | go mod tidy diff --git a/.github/workflows/inno.yml b/.github/workflows/inno.yml index 1552640..29b0115 100644 --- a/.github/workflows/inno.yml +++ b/.github/workflows/inno.yml @@ -15,7 +15,7 @@ jobs: working-directory: ${{ github.workspace }}/packages/inno steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Build installer 📦 id: build env: diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index ec9b5bc..6b2cc80 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Lint files uses: articulate/actions-markdownlint@17b8abe7407cd17590c006ecc837c35e1ac3ed83 with: diff --git a/.github/workflows/merge_contributions_pr.yml b/.github/workflows/merge_contributions_pr.yml index 0b762a7..8b4293f 100644 --- a/.github/workflows/merge_contributions_pr.yml +++ b/.github/workflows/merge_contributions_pr.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Check and merge ⛙ uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index daf2c55..90caa23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: skipped: ${{ steps.changelog.outputs.skipped }} steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Create changelog ✍️ id: changelog uses: TriPSs/conventional-changelog-action@f04dac1fd07687cec8ea302937ca588b33786e98 @@ -39,7 +39,7 @@ jobs: working-directory: ${{ github.workspace }}/src steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Install Go 🗳 uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 with: @@ -50,14 +50,14 @@ jobs: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git tag ${{ needs.changelog.outputs.tag }} - name: Run GoReleaser 🚀 - uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 + uses: goreleaser/goreleaser-action@5742e2a039330cbb23ebf35f046f814d4c6ff811 with: distribution: goreleaser version: latest args: build --clean workdir: src - name: Release 🎓 - uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 + uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87 with: tag_name: ${{ needs.changelog.outputs.tag }} body: ${{ needs.changelog.outputs.body }} diff --git a/.github/workflows/scoop.yml b/.github/workflows/scoop.yml index ad8b3b8..ac5208d 100644 --- a/.github/workflows/scoop.yml +++ b/.github/workflows/scoop.yml @@ -18,7 +18,7 @@ jobs: working-directory: ${{ github.workspace }}/packages/scoop steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Update Template ✍️ run: | ./build.ps1 -Version ${{ github.event.inputs.version }} diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml index ede56fe..ace2584 100644 --- a/.github/workflows/winget.yml +++ b/.github/workflows/winget.yml @@ -17,7 +17,7 @@ jobs: WINGETCREATE_TOKEN: ${{ secrets.WINGETCREATE_TOKEN }} steps: - name: Checkout code 👋 - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: Create manifest and submit PR 📦 run: | ./build.ps1 -Version "${{ github.event.inputs.version }}" -Token $env:WINGETCREATE_TOKEN