@@ -28,15 +28,15 @@ jobs:
2828 app_id : ${{ secrets.CIO_APP_ID }}
2929 private_key : ${{ secrets.CIO_APP_SECRET }}
3030
31- - uses : actions/checkout@v4
31+ - uses : actions/checkout@v5
3232
3333 # If using sd on macos, "brew install" works great. for Linux, this is the recommended way.
3434 - name : Install sd CLI to use later in the workflow
3535 # uses: kenji-miyake/setup-sd@59a1bd7bba077f6c491f04cd9d24b524ea2db4b6 # v1.1.1
3636 uses : levibostian/setup-sd@cbdeed93d4fe03f9e36b73bb6d9e7c3c4805e1f9 # add-file-extension # Using fork until upstream Action has bug fixed in it.
3737
3838 - name : Deploy git tag via semantic release
39- uses : cycjimmy/semantic-release-action@0a51e81a6baff2acad3ee88f4121c589c73d0f0e # v4.2.0
39+ uses : cycjimmy/semantic-release-action@ba330626c4750c19d8299de843f05c7aa5574f62 # v5.0.2
4040 id : semantic-release
4141 with :
4242 semantic_version : latest
4949 GITHUB_TOKEN : ${{ steps.generate_token.outputs.token }}
5050
5151 - name : Notify team of git tag being created
52- uses : slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
52+ uses : slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
5353 if : steps.semantic-release.outputs.new_release_published == 'true'
5454 with :
5555 # Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
8484 SLACK_WEBHOOK_TYPE : INCOMING_WEBHOOK
8585
8686 - name : Notify team of failure
87- uses : slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
87+ uses : slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
8888 if : ${{ failure() }} # only run this if any previous step failed
8989 with :
9090 # Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -124,11 +124,11 @@ jobs:
124124 if : needs.deploy-git-tag.outputs.new_release_published == 'true' # only run if a git tag was made.
125125 runs-on : ubuntu-latest
126126 steps :
127- - uses : actions/checkout@v4
127+ - uses : actions/checkout@v5
128128 with :
129129 ref : ${{ needs.deploy-git-tag.outputs.new_release_git_head }}
130130
131- - uses : actions/setup-node@v4
131+ - uses : actions/setup-node@v6
132132 with :
133133 node-version : ' 20'
134134 cache : ' npm'
@@ -142,7 +142,7 @@ jobs:
142142 IS_PRERELEASE : false # at this time, all deployments are made to `main` production branch
143143
144144 - name : Notify team of successful deployment
145- uses : slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
145+ uses : slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
146146 if : ${{ success() }}
147147 with :
148148 # Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -177,7 +177,7 @@ jobs:
177177 SLACK_WEBHOOK_TYPE : INCOMING_WEBHOOK
178178
179179 - name : Notify team of failure
180- uses : slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
180+ uses : slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
181181 if : ${{ failure() }} # only run this if any previous step failed
182182 with :
183183 # Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
0 commit comments