Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run with Node v20 #26

Merged
merged 2 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check single, no redirect
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/status/200
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check multiple, no redirect
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/status/200|https://postman-echo.com/status/304
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check single, with redirect
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/status/200
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check single, with retry
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/status/200
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check single, with retry-all
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/status/200
Expand All @@ -100,7 +100,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: Check single, with basic auth
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ./
with:
url: https://postman-echo.com/basic-auth
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ branding:
icon: check
color: purple
runs:
using: "node16"
using: "node20"
main: "dist/index.js"