-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
106 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
node-version: '20.10.0' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install Yarn | ||
|
@@ -33,6 +33,6 @@ jobs: | |
yarn test | ||
- name: Uploade CodeCov Report | ||
uses: codecov/[email protected].1 | ||
uses: codecov/[email protected].4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v14.18.1 | ||
v20.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: 'Fetch API Data' | |
description: 'This action will handle authenticated API requests, allowing you to save the data from the request into your workspace.' | ||
author: 'James Ives <[email protected]>' | ||
runs: | ||
using: 'node16' | ||
using: 'node20' | ||
main: 'lib/main.js' | ||
branding: | ||
icon: 'truck' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@jamesives/fetch-api-data-action", | ||
"description": "GitHub action for handling authenticated API requests, allowing you to save the data from the request into your workspace as an environment variable and a .json file.", | ||
"author": "James Ives <[email protected]> (https://jamesiv.es)", | ||
"version": "2.2.4", | ||
"version": "2.3.0", | ||
"license": "MIT", | ||
"main": "lib/lib.js", | ||
"types": "lib/lib.d.ts", | ||
|
@@ -36,27 +36,27 @@ | |
], | ||
"dependencies": { | ||
"@actions/core": "1.10.0", | ||
"@actions/io": "1.1.2", | ||
"@actions/io": "1.1.3", | ||
"async-retry": "1.3.3", | ||
"cross-fetch": "3.1.5", | ||
"cross-fetch": "4.0.0", | ||
"mustache": "4.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/async-retry": "1.4.3", | ||
"@types/jest": "27.5.0", | ||
"@types/mustache": "4.2.2", | ||
"@types/node": "20.5.7", | ||
"@types/node": "20.10.0", | ||
"@typescript-eslint/eslint-plugin": "5.62.0", | ||
"@typescript-eslint/parser": "5.54.1", | ||
"eslint": "8.48.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"eslint-plugin-jest": "27.2.1", | ||
"@typescript-eslint/parser": "5.62.0", | ||
"eslint": "8.54.0", | ||
"eslint-config-prettier": "9.0.0", | ||
"eslint-plugin-jest": "27.2.3", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"jest": "27.5.1", | ||
"jest-circus": "27.5.1", | ||
"nock": "13.2.9", | ||
"nock": "13.3.8", | ||
"prettier": "2.8.4", | ||
"ts-jest": "27.1.4", | ||
"typescript": "4.9.3" | ||
"typescript": "4.9.5" | ||
} | ||
} |
Oops, something went wrong.