From 72ebdc4c3eb2728761fcce710de4da397bd74810 Mon Sep 17 00:00:00 2001 From: Nick Amoscato <nick@amoscato.com> Date: Tue, 14 May 2024 12:00:09 -0400 Subject: [PATCH] Update usage example version (#115) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd916fa..77780c9 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ jobs: steps: # 2. Post summary message at the beginning of your workflow - name: Post to Slack - uses: Fieldguide/action-slack-deploy-pipeline@v1 + uses: Fieldguide/action-slack-deploy-pipeline@v2 id: slack - name: Deploy to staging @@ -60,7 +60,7 @@ jobs: # 3. Post threaded stage updates throughout - name: Post to Slack - uses: Fieldguide/action-slack-deploy-pipeline@v1 + uses: Fieldguide/action-slack-deploy-pipeline@v2 if: always() with: thread_ts: ${{ steps.slack.outputs.ts }} @@ -75,7 +75,7 @@ jobs: # 4. Post last "conclusion" stage - name: Post to Slack - uses: Fieldguide/action-slack-deploy-pipeline@v1 + uses: Fieldguide/action-slack-deploy-pipeline@v2 if: always() with: thread_ts: ${{ needs.staging.outputs.slack_ts }}