Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Node.js 20
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '20.x'
node-version: '24.14.1'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Upload build artifacts
# Upload build artifacts on push event.
if: github.event_name == 'push'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: oasis-rofl-app-${{ steps.vars.outputs.SHORT_SHA }}
path: dist
6 changes: 3 additions & 3 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
# Checkout pull request HEAD commit instead of merge commit.
Expand All @@ -34,9 +34,9 @@ jobs:
with:
python-version: '3.x'
- name: Set up Node.js 20
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '20.x'
node-version: '24.14.1'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cloudflare-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Add in progress comment to PR
# We want to add in progress comment on a pull request event only.
if: github.event_name == 'pull_request'
uses: mshick/add-pr-comment@v2
uses: mshick/add-pr-comment@v3
with:
message: |
## Deploying with <a href="https://pages.dev">Cloudflare Pages</a>
Expand All @@ -43,15 +43,15 @@ jobs:
</tr>
</table>
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
# Checkout pull request HEAD commit instead of merge commit.
with:
submodules: true
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Node.js 20
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '20.x'
node-version: '24.14.1'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -72,7 +72,7 @@ jobs:
github.event.pull_request.number) || '' }}
# On a subsequent run the original comment will be updated.
- name: Update PR comment
uses: mshick/add-pr-comment@v2
uses: mshick/add-pr-comment@v3
# We want to update a comment on a pull request event only.
if: github.event_name == 'pull_request' && always()
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Node.js 20
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '20.x'
node-version: '24.14.1'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
with:
version: ${{ steps.vars.outputs.VERSION }}
- name: Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: |
rofl-app-${{ steps.vars.outputs.VERSION }}.zip
Expand Down
Loading