Skip to content

Commit

Permalink
fix: uses to root
Browse files Browse the repository at this point in the history
  • Loading branch information
muhfaris committed Sep 20, 2023
1 parent 25949d5 commit dcd4197
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# GET request
- name: Make GET API Request
id: get-request
uses: ./dist
uses: ./
with:
url: "https://jsonplaceholder.typicode.com/todos"
headers: '{"Content-Type":"application/json"}'
Expand All @@ -29,7 +29,7 @@ jobs:
# POST request
- name: Make POST API Request
id: post-request
uses: ./dist
uses: ./
with:
url: "https://jsonplaceholder.typicode.com/todos"
headers: '{"Content-Type":"application/json"}'
Expand All @@ -50,7 +50,7 @@ jobs:
# PUT request
- name: Make PUT API Request
id: put-request
uses: ./dist
uses: ./
with:
url: "https://jsonplaceholder.typicode.com/todos/1"
headers: '{"Content-Type":"application/json"}'
Expand Down

0 comments on commit dcd4197

Please sign in to comment.