From f9458b4b8b60443f7be52689f0c1148c08da2eda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 10:51:46 +0000 Subject: [PATCH] chore(deps): bump the main group with 6 updates Bumps the main group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-go](https://github.com/actions/setup-go) | `3` | `5` | | [anothrNick/github-tag-action](https://github.com/anothrnick/github-tag-action) | `1.61.0` | `1.67.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `1` | `2` | | [arduino/setup-task](https://github.com/arduino/setup-task) | `1` | `2` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `4` | `6` | Updates `actions/checkout` from 3 to 4 - [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/v3...v4) Updates `actions/setup-go` from 3 to 5 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) Updates `anothrNick/github-tag-action` from 1.61.0 to 1.67.0 - [Release notes](https://github.com/anothrnick/github-tag-action/releases) - [Commits](https://github.com/anothrnick/github-tag-action/compare/1.61.0...1.67.0) Updates `softprops/action-gh-release` from 1 to 2 - [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/v1...v2) Updates `arduino/setup-task` from 1 to 2 - [Release notes](https://github.com/arduino/setup-task/releases) - [Commits](https://github.com/arduino/setup-task/compare/v1...v2) Updates `peter-evans/create-pull-request` from 4 to 6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: main - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: main - dependency-name: anothrNick/github-tag-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: main - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: main - dependency-name: arduino/setup-task dependency-type: direct:production update-type: version-update:semver-major dependency-group: main - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: main ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- .github/workflows/trunk-upgrade.yml | 2 +- .github/workflows/update.yml | 8 ++++---- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 45b78f5..de69004 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: commitlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v5 @@ -32,10 +32,10 @@ jobs: permissions: checks: write # For trunk to post annotations steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - uses: trunk-io/trunk-action@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd722a0..b61af68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: with: fetch-depth: 0 - id: version - uses: anothrNick/github-tag-action@1.61.0 + uses: anothrNick/github-tag-action@1.67.0 env: GITHUB_TOKEN: ${{ github.token }} WITH_V: true @@ -32,11 +32,11 @@ jobs: GIT_SHA=$(git rev-parse HEAD) echo "sha=${GIT_SHA::7}" >> $GITHUB_OUTPUT - id: tag - uses: anothrNick/github-tag-action@1.61.0 + uses: anothrNick/github-tag-action@1.67.0 env: GITHUB_TOKEN: ${{ github.token }} WITH_V: true - - uses: softprops/action-gh-release@v1 + - uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.version.outputs.new_tag }} name: ${{ steps.version.outputs.new_tag }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6f60965..e5c951a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,11 +24,11 @@ jobs: github.event_name == 'push' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - - uses: arduino/setup-task@v1 + - uses: arduino/setup-task@v2 - run: task test diff --git a/.github/workflows/trunk-upgrade.yml b/.github/workflows/trunk-upgrade.yml index 5a551ac..c2dcc48 100644 --- a/.github/workflows/trunk-upgrade.yml +++ b/.github/workflows/trunk-upgrade.yml @@ -16,7 +16,7 @@ jobs: pull-requests: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-go@v5 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 22ea6ba..fce5a8c 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -13,13 +13,13 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - - uses: arduino/setup-task@v1 + - uses: arduino/setup-task@v2 - run: wget -O openapi.json https://api.aiven.io/doc/openapi.json - run: task generate env: @@ -27,7 +27,7 @@ jobs: AIVEN_PROJECT_NAME: ${{ secrets.AIVEN_PROJECT_NAME }} - id: date run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - - uses: peter-evans/create-pull-request@v4 + - uses: peter-evans/create-pull-request@v6 with: author: GitHub body: >