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 }} -