Skip to content

Commit

Permalink
Update actions in GitHub Actions CI
Browse files Browse the repository at this point in the history
The following updates are performed:
* update actions/checkout to v4
* update actions/setup-node to v4
  • Loading branch information
striezel authored and zbjornson committed Dec 28, 2023
1 parent 2c4d2a7 commit 569e8fb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Expand Up @@ -15,10 +15,10 @@ jobs:
matrix:
node: [18.12.0, 20.9.0]
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update
Expand All @@ -39,10 +39,10 @@ jobs:
# ref: https://github.com/nodejs/node/pull/50650
node: [18.12.0]
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
Invoke-WebRequest "https://ftp-osl.osuosl.org/pub/gnome/binaries/win64/gtk+/2.22/gtk+-bundle_2.22.1-20101229_win64.zip" -OutFile "gtk.zip"
Expand All @@ -63,10 +63,10 @@ jobs:
matrix:
node: [18.12.0, 20.9.0]
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
brew update
Expand All @@ -82,10 +82,10 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.9.0
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install
run: npm install --ignore-scripts
- name: Lint
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/prebuild.yaml
Expand Up @@ -33,11 +33,11 @@ jobs:
env:
CANVAS_VERSION_TO_BUILD: ${{ matrix.canvas_tag }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ matrix.canvas_tag }}

- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down Expand Up @@ -104,11 +104,11 @@ jobs:
env:
CANVAS_VERSION_TO_BUILD: ${{ matrix.canvas_tag }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ matrix.canvas_tag }}

- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down Expand Up @@ -176,11 +176,11 @@ jobs:
update: true
path-type: inherit

- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ matrix.canvas_tag }}

Expand Down

0 comments on commit 569e8fb

Please sign in to comment.