Skip to content

Commit

Permalink
Update the various actions used in the GitHub workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
SirStendec committed Oct 9, 2024
1 parent 5f5db8b commit aaff2b6
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Extension Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Uses PNPM
uses: pnpm/action-setup@v2.0.1
uses: pnpm/action-setup@v4
with:
version: 8.10.2
version: 8
run_install: false

- name: Uses Node.js 18.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: 18
cache: 'pnpm'

- name: Clone FrankerFaceZ Repository
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:

- name: Report Success
if: success()
uses: tsickert/discord-webhook@v5.3.0
uses: tsickert/discord-webhook@v6
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
embed-color: 3066993
Expand All @@ -95,7 +96,7 @@ jobs:
- name: Report Failure
if: failure()
uses: tsickert/discord-webhook@v5.3.0
uses: tsickert/discord-webhook@v6
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
embed-color: 15158332
Expand Down

0 comments on commit aaff2b6

Please sign in to comment.