From 589badb5d10db41214772de884ccc97417fc0e6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 18:22:26 +0000 Subject: [PATCH] Bump asdf-vm/actions from 2 to 3 Bumps [asdf-vm/actions](https://github.com/asdf-vm/actions) from 2 to 3. - [Release notes](https://github.com/asdf-vm/actions/releases) - [Changelog](https://github.com/asdf-vm/actions/blob/master/CHANGELOG.md) - [Commits](https://github.com/asdf-vm/actions/compare/v2...v3) --- updated-dependencies: - dependency-name: asdf-vm/actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/example-bashbot-github-action-gate.yaml | 2 +- .github/workflows/example-bashbot-github-action.yaml | 2 +- .github/workflows/example-notify-slack.yaml | 2 +- .github/workflows/pr.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/example-bashbot-github-action-gate.yaml b/.github/workflows/example-bashbot-github-action-gate.yaml index 42b26fd..cd504ae 100644 --- a/.github/workflows/example-bashbot-github-action-gate.yaml +++ b/.github/workflows/example-bashbot-github-action-gate.yaml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Install bashbot with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: | bashbot 2.0.5 diff --git a/.github/workflows/example-bashbot-github-action.yaml b/.github/workflows/example-bashbot-github-action.yaml index bf41389..6e77e26 100644 --- a/.github/workflows/example-bashbot-github-action.yaml +++ b/.github/workflows/example-bashbot-github-action.yaml @@ -14,7 +14,7 @@ jobs: steps: - name: Install stuff with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: | bashbot 2.0.5 diff --git a/.github/workflows/example-notify-slack.yaml b/.github/workflows/example-notify-slack.yaml index 6a3a667..2439279 100644 --- a/.github/workflows/example-notify-slack.yaml +++ b/.github/workflows/example-notify-slack.yaml @@ -14,7 +14,7 @@ jobs: steps: - name: Install Bashbot via asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: bashbot 2.0.5 - diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 93b6483..b8ecb29 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -48,7 +48,7 @@ jobs: uses: actions/checkout@v3 - name: Install Golang via asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: golang 1.19.4 @@ -75,7 +75,7 @@ jobs: fetch-depth: 0 - name: Install stuff with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: | action-validator 0.1.2 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e82699..6bf017b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: fetch-depth: 0 - name: Install stuff with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: | golang 1.19.4 @@ -114,7 +114,7 @@ jobs: tag: bashbot-${{ env.RELEASE_VERSION }} - name: Install Bashbot via asdf from release artifacts - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 with: tool_versions: bashbot ${{ env.RELEASE_VERSION_NO_V }} -