Skip to content

Commit

Permalink
build: update workflows versions (#50)
Browse files Browse the repository at this point in the history
* Bump webpack from 5.75.0 to 5.76.0

Bumps [webpack](https://github.com/webpack/webpack) from 5.75.0 to 5.76.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.75.0...v5.76.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yaml from 2.2.1 to 2.2.2

Bumps [yaml](https://github.com/eemeli/yaml) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.2.1...v2.2.2)

---
updated-dependencies:
- dependency-name: yaml
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci: update actions version

* build: regen lock file

* ci: update test workflow

* test: improve randomInt spec

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
jlozovei and dependabot[bot] authored Jan 3, 2024
1 parent f965f45 commit d6fa51d
Show file tree
Hide file tree
Showing 5 changed files with 2,503 additions and 13,143 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,23 @@ on:
jobs:
release:
name: Deploy to GitHub Pages
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 18.16.0
cache: 'npm'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Push to gh-pages
uses: crazy-max/[email protected]
with:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ on:
jobs:
test:
name: Test code
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 18.16.0
cache: 'npm'

- name: Install dependencies
run: npm install
Expand Down
Loading

0 comments on commit d6fa51d

Please sign in to comment.