Skip to content

Commit 138cc64

Browse files
committed
Specify only major version for slackapi/slack-github-action
1 parent 2df9a62 commit 138cc64

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/chart-doc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Notify Slack of chart documentation failure on main
3737
if: github.ref == 'refs/heads/main' && failure()
38-
uses: slackapi/slack-github-action@v3.0.1
38+
uses: slackapi/slack-github-action@v3
3939
with:
4040
payload-delimiter: "_"
4141
payload: |
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: Notify Slack of chart documentation (rbac) failure on main
8585
if: github.ref == 'refs/heads/main' && failure()
86-
uses: slackapi/slack-github-action@v3.0.1
86+
uses: slackapi/slack-github-action@v3
8787
with:
8888
payload-delimiter: "_"
8989
payload: |

.github/workflows/chart-rebuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Notify Slack of index.yaml rebuild failure
6363
if: failure()
64-
uses: slackapi/slack-github-action@v3.0.1
64+
uses: slackapi/slack-github-action@v3
6565
with:
6666
payload-delimiter: "_"
6767
payload: |

.github/workflows/chart-releaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Notify Slack of chart release failure
4646
if: failure()
47-
uses: slackapi/slack-github-action@v3.0.1
47+
uses: slackapi/slack-github-action@v3
4848
with:
4949
payload-delimiter: "_"
5050
payload: |

.github/workflows/chart-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Notify Slack of chart linting failure if on main
5252
if: github.ref == 'refs/heads/main' && (steps.ct-lint.outcome == 'failure' || steps.ct-lint-all.outcome == 'failure')
53-
uses: slackapi/slack-github-action@v3.0.1
53+
uses: slackapi/slack-github-action@v3
5454
with:
5555
payload-delimiter: "_"
5656
payload: |
@@ -114,7 +114,7 @@ jobs:
114114

115115
- name: Notify Slack of chart unittest failure if on main
116116
if: github.ref == 'refs/heads/main' && steps.unittest.outcome == 'failure'
117-
uses: slackapi/slack-github-action@v3.0.1
117+
uses: slackapi/slack-github-action@v3
118118
with:
119119
payload-delimiter: "_"
120120
payload: |
@@ -213,7 +213,7 @@ jobs:
213213

214214
- name: Notify Slack of chart install failure if on main
215215
if: github.ref == 'refs/heads/main' && (steps.ct-install.outcome == 'failure' || steps.ct-install-all.outcome == 'failure')
216-
uses: slackapi/slack-github-action@v3.0.1
216+
uses: slackapi/slack-github-action@v3
217217
with:
218218
payload-delimiter: "_"
219219
payload: |

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
uses: quarto-dev/quarto-actions/setup@v2
3131
with:
3232
version: pre-release
33-
33+
3434
- name: Render Quarto Project
3535
uses: quarto-dev/quarto-actions/render@v2
36-
36+
3737
- run: just push-docs
3838

3939
- name: Notify Slack of publishing chart documentation failure
4040
if: failure()
41-
uses: slackapi/slack-github-action@v3.0.1
41+
uses: slackapi/slack-github-action@v3
4242
with:
4343
payload-delimiter: "_"
4444
payload: |

0 commit comments

Comments
 (0)