Skip to content

Commit

Permalink
Only specify major version for post-v1 actions (#4848)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb authored Sep 1, 2024
1 parent 1ea37d7 commit 3096810
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ jobs:
run: python generate_report.py

- name: Send report
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v1
with:
payload: ${{ steps.report.outputs.payload }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/discussion_ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Send notification for new discussion
id: slack
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v1
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_limit_reminders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "required_review_count=$(( pr_count * 1 ))" >> "$GITHUB_ENV"
- name: Send notification
id: slack
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v1
with:
# Note: We cannot use the YAML folded chomping block syntax here (`>`) because
# GitHub Actions does not support it (they only support a subset of YAML):
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
writeFileSync('/tmp/pr_ping_payload.json', JSON.stringify(payload))
- name: Send Slack notification
uses: slackapi/slack-github-action@v1.27.0
uses: slackapi/slack-github-action@v1
with:
payload-file-path: /tmp/pr_ping_payload.json
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
sudo chown -R runneradmin:root /tmp/renovate/
ls -R "$cache_dir"
- uses: renovatebot/github-action@v40.2.7
- uses: renovatebot/github-action@v40
with:
# Renovate recommends _not_ to use any of
# [these names](https://docs.renovatebot.com/configuration-options/).
Expand Down

0 comments on commit 3096810

Please sign in to comment.