Skip to content

Commit 9f78da2

Browse files
committed
chore: bump actions versions
1 parent a6f40cb commit 9f78da2

File tree

6 files changed

+21
-24
lines changed

6 files changed

+21
-24
lines changed

.codesandbox/ci.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"node": "16",
2+
"node": "18",
33
"sandboxes": []
44
}

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ jobs:
1717
- ubuntu-latest
1818
runs-on: ${{ matrix.os }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Setup pnpm
2323
uses: pnpm/action-setup@v2
24-
with:
25-
version: latest
2624

2725
- name: Setup Node.js ${{ matrix.node }}
28-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2927
with:
3028
node-version: ${{ matrix.node }}
3129
cache: pnpm

.github/workflows/codeql.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
name: "CodeQL"
1+
name: CodeQL
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [ "master" ]
8+
branches:
9+
- master
810
schedule:
9-
- cron: "16 11 * * 2"
11+
- cron: '16 11 * * 2'
1012

1113
jobs:
1214
analyze:
@@ -20,11 +22,12 @@ jobs:
2022
strategy:
2123
fail-fast: false
2224
matrix:
23-
language: [ javascript ]
25+
language:
26+
- javascript
2427

2528
steps:
2629
- name: Checkout
27-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
2831

2932
- name: Initialize CodeQL
3033
uses: github/codeql-action/init@v2
@@ -38,4 +41,4 @@ jobs:
3841
- name: Perform CodeQL Analysis
3942
uses: github/codeql-action/analyze@v2
4043
with:
41-
category: "/language:${{ matrix.language }}"
44+
category: '/language:${{ matrix.language }}'

.github/workflows/release.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,25 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

1919
- name: Setup pnpm
2020
uses: pnpm/action-setup@v2
21-
with:
22-
version: latest
2321

24-
- name: Setup Node.js 16
25-
uses: actions/setup-node@v3
22+
- name: Setup Node.js LTS
23+
uses: actions/setup-node@v4
2624
with:
27-
node-version: 16
25+
node-version: lts/*
2826
cache: pnpm
2927

3028
- name: Install Dependencies
3129
run: pnpm i
3230

3331
- name: Build
34-
run: yarn build
32+
run: pnpm build
3533

3634
- name: Create Release Pull Request or Publish to npm
3735
id: changesets

.github/workflows/size-limit.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ jobs:
1313
size-limit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Setup pnpm
1919
uses: pnpm/action-setup@v2
20-
with:
21-
version: latest
2220

2321
- name: Setup Node.js LTS
24-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2523
with:
2624
node-version: lts/*
2725
cache: pnpm

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
18

0 commit comments

Comments
 (0)