Skip to content

Commit 94d0a4e

Browse files
Update CI github-actions
1 parent 2d74902 commit 94d0a4e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
submodules: true
2828
- name: Set up Node.js 20
2929
uses: actions/setup-node@v5
3030
with:
31-
node-version: '20.x'
31+
node-version: '24.11.1'
3232
cache: yarn
3333
- name: Install dependencies
3434
run: yarn install --frozen-lockfile
@@ -42,7 +42,7 @@ jobs:
4242
- name: Upload build artifacts
4343
# Upload build artifacts on push event.
4444
if: github.event_name == 'push'
45-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v5
4646
with:
4747
name: oasis-rofl-app-${{ steps.vars.outputs.SHORT_SHA }}
4848
path: dist

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
submodules: true
2828
# Checkout pull request HEAD commit instead of merge commit.
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Node.js 20
3737
uses: actions/setup-node@v5
3838
with:
39-
node-version: '20.x'
39+
node-version: '24.11.1'
4040
cache: yarn
4141
- name: Install dependencies
4242
run: yarn install --frozen-lockfile

.github/workflows/cloudflare-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
</tr>
4444
</table>
4545
- name: Checkout code
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
# Checkout pull request HEAD commit instead of merge commit.
4848
with:
4949
submodules: true
5050
ref: ${{ github.event.pull_request.head.sha }}
5151
- name: Set up Node.js 20
5252
uses: actions/setup-node@v5
5353
with:
54-
node-version: '20.x'
54+
node-version: '24.11.1'
5555
cache: yarn
5656
- name: Install dependencies
5757
run: yarn install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
contents: write
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
submodules: true
2626
- name: Set up Node.js 20
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v5
2828
with:
29-
node-version: '20.x'
29+
node-version: '24.11.1'
3030
cache: yarn
3131
- name: Install dependencies
3232
run: yarn install --frozen-lockfile

0 commit comments

Comments
 (0)