Skip to content

Commit

Permalink
Updated github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
PantelisGeorgiadis committed Feb 20, 2024
1 parent 7431e43 commit 85d179d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: mymindstorm/setup-emsdk@v11
- uses: mymindstorm/setup-emsdk@v13

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Make build script executable
working-directory: ./wasm
run: chmod +x ./build.sh
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: javascript
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit 85d179d

Please sign in to comment.