Skip to content

Commit 1d0b590

Browse files
committed
Merge branch 'dcmt/github-ci-head-not-merge'
2 parents 253a860 + 4b60d68 commit 1d0b590

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/integration.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
integration:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.event.pull_request.head.sha }}
1416

1517
- name: Install Foundry
1618
uses: foundry-rs/foundry-toolchain@v1

.github/workflows/lint.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.event.pull_request.head.sha }}
1416

1517
- name: Install Foundry
1618
uses: foundry-rs/foundry-toolchain@v1

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.event.pull_request.head.sha }}
1416

1517
- name: Install Foundry
1618
uses: foundry-rs/foundry-toolchain@v1

0 commit comments

Comments
 (0)