Skip to content

Commit

Permalink
build(deps): Bump slackapi/slack-github-action from 1.25.0 to 1.26.0 (#…
Browse files Browse the repository at this point in the history
…2864)

Bumps
[slackapi/slack-github-action](https://github.com/slackapi/slack-github-action)
from 1.25.0 to 1.26.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/slackapi/slack-github-action/releases">slackapi/slack-github-action's
releases</a>.</em></p>
<blockquote>
<h2>Slack Send V1.26.0</h2>
<h2>What's Changed</h2>
<p>This release provides an escape hatch for sending the JSON content of
a payload file exactly as is, without replacing any templated
variables!</p>
<p>Previously a payload file was parsed and templated variables were
replaced with values from <code>github.context</code> and
<code>github.env</code>. Any undefined variables were replaced with
<code>???</code> in this process, which might have caused questions.</p>
<p>That remains the default behavior, but now the JSON contents of a
payload file can be sent exactly as written by setting the
<code>payload-file-path-parsed</code> input to <code>false</code>:</p>
<pre lang="yaml"><code>- name: Send custom JSON data to Slack workflow
  id: slack
  uses: slackapi/slack-github-action@v1.26.0
  with:
    payload-file-path: &quot;./payload-slack-content.json&quot;
    payload-file-path-parsed: false
  env:
    SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
</code></pre>
<p>With this change, the contents of the example
<code>payload-slack-content.json</code> will be sent to a webhook URL
exactly as is!</p>
<h2>Recent commits</h2>
<h3>Enhancements</h3>
<ul>
<li>allow to use json file as is without replacing/parsing anything by
<a href="https://github.com/talgendler"><code>@​talgendler</code></a> in
<a
href="https://redirect.github.com/slackapi/slack-github-action/pull/299">slackapi/slack-github-action#299</a></li>
</ul>
<h3>Documentation</h3>
<ul>
<li>docs(readme): adjust whitespace in env assignment by <a
href="https://github.com/paulo9mv"><code>@​paulo9mv</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/296">slackapi/slack-github-action#296</a></li>
</ul>
<h3>Maintenance</h3>
<ul>
<li>ci(test): collect environment secrets from a prepared staging
environment by <a
href="https://github.com/zimeg"><code>@​zimeg</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/294">slackapi/slack-github-action#294</a></li>
<li>ci(test): share environment secrets with pull requests from forked
prs by <a href="https://github.com/zimeg"><code>@​zimeg</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/297">slackapi/slack-github-action#297</a></li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Bump eslint-plugin-jsdoc from 46.10.1 to 48.2.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/295">slackapi/slack-github-action#295</a></li>
<li>Bump eslint from 8.56.0 to 8.57.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/289">slackapi/slack-github-action#289</a></li>
<li>Bump mocha from 10.2.0 to 10.3.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/288">slackapi/slack-github-action#288</a></li>
<li>Bump https-proxy-agent from 7.0.2 to 7.0.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/290">slackapi/slack-github-action#290</a></li>
<li>Bump <code>@​slack/web-api</code> from 6.12.0 to 7.0.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/287">slackapi/slack-github-action#287</a></li>
<li>Bump mocha from 10.3.0 to 10.4.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/300">slackapi/slack-github-action#300</a></li>
<li>Bump axios from 1.6.7 to 1.6.8 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/301">slackapi/slack-github-action#301</a></li>
<li>Bump eslint-plugin-jsdoc from 48.2.1 to 48.2.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/slackapi/slack-github-action/pull/302">slackapi/slack-github-action#302</a></li>
</ul>
<h2>New Contributors</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/70cd7be8e40a46e8b0eced40b0de447bdb42f68e"><code>70cd7be</code></a>
Automatic compilation</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/53b162f7f5bedbf55515caebaee839322b18fb28"><code>53b162f</code></a>
chore(release): tag release v1.26.0</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/47d8e4218e08240b2c0bfcf7ed1b182c905b2246"><code>47d8e42</code></a>
feat: introduce an option to send payload file json without replacing
variabl...</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/d4473740bfcff61a77fb1beca1f0f0dbd4ce967a"><code>d447374</code></a>
Bump eslint-plugin-jsdoc from 48.2.1 to 48.2.2 (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/302">#302</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/b638b31d0502670243c3c2ee2001791e62875e4d"><code>b638b31</code></a>
Bump axios from 1.6.7 to 1.6.8 (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/301">#301</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/c76311a14e972ca3a4cca1aff91e1218236a3d3c"><code>c76311a</code></a>
Bump mocha from 10.3.0 to 10.4.0 (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/300">#300</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/d4358d2ffe2208c28e9366280dede1bb16470b44"><code>d4358d2</code></a>
docs(readme): adjust whitespace in env assignment (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/296">#296</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/cb3763edf2d5e874e3b431699044f6b047e69908"><code>cb3763e</code></a>
ci(test): share environment secrets with pull requests from forked prs
(<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/297">#297</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/86bebf87bfee73c20cf1b424e11c83d60187fce1"><code>86bebf8</code></a>
Bump <code>@​slack/web-api</code> from 6.12.0 to 7.0.2 (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/287">#287</a>)</li>
<li><a
href="https://github.com/slackapi/slack-github-action/commit/efa31bf63c767208beb3cd392d911d85cac8421d"><code>efa31bf</code></a>
Bump https-proxy-agent from 7.0.2 to 7.0.4 (<a
href="https://redirect.github.com/slackapi/slack-github-action/issues/290">#290</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/slackapi/slack-github-action/compare/v1.25.0...v1.26.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=slackapi/slack-github-action&package-manager=github_actions&previous-version=1.25.0&new-version=1.26.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Apr 22, 2024
1 parent 8bd69b9 commit b7846d2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-long-37x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-nightly-34x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on success
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-nightly-37x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-nightly-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on success
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack upon pre-release
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack upon release
uses: slackapi/slack-github-action@v1.25.0
uses: slackapi/slack-github-action@v1.26.0
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
Expand Down

0 comments on commit b7846d2

Please sign in to comment.