Skip to content

Commit

Permalink
bump workflow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rotu committed Jun 11, 2024
1 parent eaf6c45 commit c7877ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
ZMQ_SHARED: false
ARCH: ${{ matrix.ARCH }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules/
Expand All @@ -96,14 +96,14 @@ jobs:
python: true
architecture: ${{ matrix.cpp_arch }}

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v4.0.0
if: ${{ !matrix.docker }}
with:
version: 8

- name: Install Node
if: ${{ !matrix.docker }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.node_arch }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
docker run --volume ${{ github.workspace }}:/app --workdir /app --privileged builder sh -c "${{ matrix.docker_cmd }}"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ./prebuilds

Expand All @@ -149,7 +149,7 @@ jobs:

- name: Test (Debug)
if: ${{ !matrix.docker }}
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 1
Expand All @@ -160,7 +160,7 @@ jobs:

- name: Test Electron (Main)
if: "${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 1
Expand All @@ -173,7 +173,7 @@ jobs:

- name: Tests + GC Tests (Release)
if: ${{ !matrix.docker }}
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
ARCH: ${{ matrix.ARCH }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules/
Expand All @@ -47,12 +47,12 @@ jobs:
cmake: true
architecture: ${{ matrix.cpp_arch }}

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v4.0.0
with:
version: 7

- name: Install Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.node_arch }}
Expand Down

0 comments on commit c7877ce

Please sign in to comment.