Skip to content

Commit

Permalink
update to node21 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob-Fletcher committed Sep 13, 2024
1 parent 3e5a134 commit e2648ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ let debugMock: jest.SpiedFunction<typeof core.debug>
let errorMock: jest.SpiedFunction<typeof core.error>
let getInputMock: jest.SpiedFunction<typeof core.getInput>
let setFailedMock: jest.SpiedFunction<typeof core.setFailed>
let setOutputMock: jest.SpiedFunction<typeof core.setOutput>

describe('action', () => {
beforeEach(() => {
Expand All @@ -27,7 +26,6 @@ describe('action', () => {
errorMock = jest.spyOn(core, 'error').mockImplementation()
getInputMock = jest.spyOn(core, 'getInput').mockImplementation()
setFailedMock = jest.spyOn(core, 'setFailed').mockImplementation()
setOutputMock = jest.spyOn(core, 'setOutput').mockImplementation()
})

it('Invalid API key', async () => {
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ inputs:
default: 'https://api.geodesic.seerai.space/krampus'

runs:
using: node20
using: node21
main: dist/index.js

0 comments on commit e2648ef

Please sign in to comment.