Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: cosa65 <[email protected]>
  • Loading branch information
cosa65 committed Aug 4, 2023
1 parent 7545cdf commit f5c10c5
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@ jobs:
with:
node-version: '14'

- id: checkout
name: Check out source code
uses: actions/checkout@v2
- id: checkout
name: Check out source code
uses: actions/checkout@v3
with:
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- id: cache-seek
name: Check for npm cache hit
Expand Down Expand Up @@ -121,6 +124,7 @@ jobs:
timestamp: ${{ steps.ref.outputs.timestamp }}
steps:
- id: checkout
name: Check out source code
uses: actions/checkout@v3
with:
ref: ${{github.head_ref}}
Expand Down Expand Up @@ -220,10 +224,11 @@ jobs:
matrix:
environment: ['production', 'staging', 'develop']
steps:
- name: Checkout
- id: checkout
name: Check out source code
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head_ref}}
ref: ${{github.head_ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- id: setup-aws
Expand Down

0 comments on commit f5c10c5

Please sign in to comment.