Skip to content

Commit

Permalink
SWI-5012 - Upgrading action to run on NodeJS 20
Browse files Browse the repository at this point in the history
  • Loading branch information
jgutierrezglez committed Apr 12, 2024
1 parent 10daefa commit cc908f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Test the action on success
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Success
run: exit 0
Expand All @@ -24,7 +24,7 @@ jobs:
name: Test the action on failure
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Failure
run: exit 1
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ inputs:
slack-channel:
description: 'Destination channel to send messages'
runs:
using: 'node16'
using: 'node20'
main: 'index.js'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "build-notify-slack-action",
"version": "1.0.0",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit cc908f3

Please sign in to comment.