Skip to content

Commit

Permalink
chore(gha): update gha actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbeckers committed Jun 6, 2024
1 parent 76e979e commit f2f6f6e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
Expand All @@ -52,13 +52,13 @@ jobs:
with:
python-version: "3.x"
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 9.1.1
- name: Set up Node.js 18
uses: actions/setup-node@v3
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: "18.15.0"
node-version: "20.9.0"
cache: "pnpm"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cors-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Publish
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 9.1.1
- name: Set up Node.js 18
uses: actions/setup-node@v3
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20.9.0"
cache: "pnpm"
node-version: "18.x"
- name: Install
run: pnpm install --frozen-lockfile
- name: Build the subgraph
Expand Down

0 comments on commit f2f6f6e

Please sign in to comment.