diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f0606175d..615ad0699 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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" @@ -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 @@ -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 diff --git a/.github/workflows/prebuild.yaml b/.github/workflows/prebuild.yaml index d1d30960f..036e115e3 100644 --- a/.github/workflows/prebuild.yaml +++ b/.github/workflows/prebuild.yaml @@ -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 }} @@ -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 }} @@ -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 }}