From 1d18426bd3b5234b142ec0e53cd5d5f0f1b17b8a Mon Sep 17 00:00:00 2001 From: Shane <6071159+smashedr@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:04:22 -0800 Subject: [PATCH 1/2] Update README.md --- README.md | 20 ++++++++++---------- package-lock.json | 2 ++ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10d51a8..f68db52 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Pass data/headers/params as JSON or YAML formatted strings. ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post method: 'POST' @@ -162,7 +162,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Web Request' id: test - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post @@ -181,7 +181,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Portainer Webhook' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: ${{ secrets.PORTAINER_WEBHOOK }} ``` @@ -191,7 +191,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Start Algolia Crawl' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://crawler.algolia.com/api/1/crawlers/${{ secrets.CRAWLER_ID }}/reindex username: ${{ secrets.CRAWLER_USER_ID }} @@ -203,7 +203,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Render Deploy Image' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: ${{ secrets.RENDER_HOOK }} params: | @@ -215,7 +215,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/get method: 'GET' @@ -226,7 +226,7 @@ Note: All outputs are run through `JSON.stringify` by default. ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post data: '{"key": "value"}' @@ -243,7 +243,7 @@ Note: All data keys are identical as exemplar formats. ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post file: path/to/file.txt @@ -256,7 +256,7 @@ Note: All data keys are identical as exemplar formats. ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post config: | @@ -271,7 +271,7 @@ Reference: https://axios-http.com/docs/req_config ```yaml - name: 'Web Request' - uses: cssnr/web-request-action@v1 + uses: cssnr/web-request-action@v2 with: url: https://httpbin.org/post method: 'POST' diff --git a/package-lock.json b/package-lock.json index 508b0d1..4674cc4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -288,6 +288,7 @@ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -585,6 +586,7 @@ "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", From a531f51ebf8aafe9e8fa1820d17dd1e559bf315f Mon Sep 17 00:00:00 2001 From: Shane <6071159+smashedr@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:23:52 -0800 Subject: [PATCH 2/2] # actions-up-ignore-file --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a4d30cc..b31f513 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,5 +1,7 @@ name: "Test" +# actions-up-ignore-file + on: workflow_dispatch: schedule: