Skip to content

Commit

Permalink
Upgrade runner os image and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Utwo committed Nov 1, 2023
1 parent ff08aa4 commit 4b5133e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
timeout-minutes: 10
steps:
- name: Setup | Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
Expand All @@ -31,7 +31,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Setup | Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup | Node.js
uses: actions/setup-node@v2
Expand All @@ -47,14 +47,14 @@ jobs:

format:
name: Format
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Setup | Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
Expand All @@ -67,14 +67,14 @@ jobs:

typecheck:
name: Typecheck
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Setup | Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

steps:
- name: Setup | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "14.18.0"

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:

steps:
- name: Setup | Clone codesandbox-client
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: codesandbox/codesandbox-client

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "16.0.0"

Expand All @@ -34,7 +34,7 @@ jobs:
run: yarn build:sandpack

- name: Archive bundler artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bundler
path: www/**/*.*
Expand All @@ -50,7 +50,7 @@ jobs:

steps:
- name: Setup | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
Expand All @@ -64,7 +64,7 @@ jobs:
run: npm whoami

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

Expand All @@ -79,7 +79,7 @@ jobs:
useLockFile: true

- name: Prepare | Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bundler
path: bundler
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

steps:
- name: Setup | Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
Expand All @@ -118,7 +118,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup | Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

Expand All @@ -128,7 +128,7 @@ jobs:
useLockFile: true

- name: Prepare | Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bundler
path: bundler
Expand Down

0 comments on commit 4b5133e

Please sign in to comment.