Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
[[ $(expr length "${{ steps.jsonbin_create.outputs.bin_id }}") -eq 0 ]] && exit 1;
[[ "${{ steps.jsonbin_create.outputs.url }}" == "https://api.jsonbin.io/v3/b/${{ steps.jsonbin_create.outputs.bin_id }}" ]] || exit 1;
- name: Call URL that was returned
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
id: http1
with:
url: '${{ steps.jsonbin_create.outputs.url }}'
Expand All @@ -47,7 +47,7 @@ jobs:
[[ $(expr length "${{ steps.jsonbin_get.outputs.bin_id }}") -eq 0 ]] && exit 1;
[[ "${{ steps.jsonbin_get.outputs.url }}" == "https://api.jsonbin.io/v3/b/${{ steps.jsonbin_get.outputs.bin_id }}" ]] || exit 1;
- name: Call URL that was returned
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
id: http2
with:
url: '${{ steps.jsonbin_get.outputs.url }}'
Expand All @@ -65,7 +65,7 @@ jobs:
bin_id: '${{ steps.jsonbin_create.outputs.bin_id }}'
api_key: '${{ secrets.API_KEY }}'
- name: Call URL that was returned
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
id: http3
with:
url: '${{ steps.jsonbin_update.outputs.url }}'
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
- id: detect-secrets
stages: ["commit", "push"]
- repo: https://github.com/zricethezav/gitleaks
rev: v8.15.2
rev: v8.16.0
hooks:
- id: gitleaks
stages: ["commit", "push"]
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: Get JSONbin
if: ${{ inputs.method == 'GET' }}
id: get
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
with:
url: 'https://api.jsonbin.io/v3/b/${{ inputs.bin_id }}'
method: 'GET'
Expand All @@ -47,7 +47,7 @@ runs:
- name: Create JSONbin
if: ${{ inputs.method == 'CREATE' }}
id: create
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
with:
url: 'https://api.jsonbin.io/v3/b'
method: 'POST'
Expand All @@ -61,7 +61,7 @@ runs:
- name: Update JSONbin
if: ${{ inputs.method == 'UPDATE' }}
id: update
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
with:
url: 'https://api.jsonbin.io/v3/b/${{ inputs.bin_id }}'
method: 'PUT'
Expand All @@ -75,7 +75,7 @@ runs:
- name: Delete JSONbin
if: ${{ inputs.method == 'DELETE' }}
id: delete
uses: fjogeleit/http-request-action@v1.12.0
uses: fjogeleit/http-request-action@v1.13.0
with:
url: 'https://api.jsonbin.io/v3/b/${{ inputs.bin_id }}'
method: 'DELETE'
Expand Down