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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
215 changes: 0 additions & 215 deletions .github/scripts/get-refs-from-pr-body.js

This file was deleted.

12 changes: 10 additions & 2 deletions .github/workflows/build_external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,22 @@
solana-ref: ${{ steps.set-git-refs.outputs.solana-ref }}
starknet-ref: ${{ steps.set-git-refs.outputs.starknet-ref }}
steps:
- uses: actions/checkout@v4
# Checkout the shared scripts from the smartcontractkit/.github repo.
- name: Checkout shared .github scripts
uses: actions/checkout@v4

Check warning on line 26 in .github/workflows/build_external.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. Action is using node20. Versions older than node24 are being deprecated. Use a newer version of the action if possible. (node-version / warning)
with:
repository: smartcontractkit/.github
ref: 79a5c885eba3814105eb7f4848b611e4e42dd55e
persist-credentials: false
sparse-checkout: tools/scripts/get-refs-from-pr-body.js
Comment on lines +28 to +31
sparse-checkout-cone-mode: false
path: dot_github
- name: Get refs from PR body
id: set-git-refs
uses: actions/github-script@v7
with:
script: |
const script = require('./.github/scripts/get-refs-from-pr-body.js')
const script = require(`${process.env.GITHUB_WORKSPACE}/dot_github/tools/scripts/get-refs-from-pr-body.js`)
await script({ github, context, core })

build-chainlink:
Expand Down Expand Up @@ -73,6 +80,7 @@
working-directory: chainlink
run: |
go get "github.com/smartcontractkit/chainlink-common@${COMMON_SHA}"
go get "github.com/smartcontractkit/chainlink-common/keystore@${COMMON_SHA}"
go mod tidy
make install-chainlink

Expand Down
Loading