Skip to content

Commit

Permalink
Merge pull request #259 from alcpereira/ci/bump-actions
Browse files Browse the repository at this point in the history
ci: bump github actions to v4
  • Loading branch information
penberg authored Sep 26, 2024
2 parents 80c2767 + a677695 commit e9db106
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
env: { "NODE_OPTIONS": "--trace-warnings" }
steps:
- name: "Checkout this repo"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Setup Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: "Build core"
Expand Down Expand Up @@ -45,9 +45,9 @@ jobs:
env: { "NODE_OPTIONS": "--trace-warnings" }
steps:
- name: "Checkout this repo"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Setup Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
cache-dependency-path: "packages/libsql-client-wasm"
Expand All @@ -72,9 +72,9 @@ jobs:
env: { "NODE_OPTIONS": "--trace-warnings" }
steps:
- name: "Checkout this repo"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Setup Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: "Build core"
Expand All @@ -83,7 +83,7 @@ jobs:
- name: "Install npm dependencies"
run: "npm ci"
- name: "Checkout hrana-test-server"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "libsql/hrana-test-server"
path: "packages/libsql-client/hrana-test-server"
Expand Down Expand Up @@ -133,9 +133,9 @@ jobs:
"CLOUDFLARE_ACCOUNT_ID": "${{ secrets.CLOUDFLARE_ACCOUNT_ID }}"
steps:
- name: "Checkout this repo"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Setup Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "lts/Hydrogen"
- name: "Build core"
Expand All @@ -145,7 +145,7 @@ jobs:
run: "npm ci"

- name: "Checkout hrana-test-server"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "libsql/hrana-test-server"
path: "packages/libsql-client/hrana-test-server"
Expand Down Expand Up @@ -201,17 +201,17 @@ jobs:
# VERCEL_PROJECT_NAME: "smoke-test"
# steps:
# - name: "Checkout this repo"
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# - name: "Setup Node.js"
# uses: actions/setup-node@v3
# uses: actions/setup-node@v4
# with:
# node-version: "lts/Hydrogen"
# cache: "npm"
# - name: "Install npm dependencies"
# run: "npm ci"

# - name: "Checkout hrana-test-server"
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# repository: "libsql/hrana-test-server"
# path: "hrana-test-server"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
working-directory: ./packages/libsql-client
steps:
- name: "Checkout this repo"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Setup Node.js"
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
cache: "npm"
Expand Down

0 comments on commit e9db106

Please sign in to comment.