From 964bc1000579c2869be315587c84b3158ab8caf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 02:26:25 +0000 Subject: [PATCH] chore(deps): bump the gha group in /.github/workflows with 1 update (#193) --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- Gruntfile.js | 15 ++++++++------- README.md | 10 +++++++--- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6ae5b6e..7b35721 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -8,7 +8,7 @@ jobs: publish: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 - uses: actions/setup-node@v4.0.2 with: node-version: "20.5.1" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 090e60d..44c28f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout repository - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Get Node version from Node manifest run: echo "NODE_VER=$(curl -s https://nwjs.io/versions | jq -r ".versions[0].components.node")" >> $GITHUB_ENV - name: Setup Node diff --git a/Gruntfile.js b/Gruntfile.js index bc4f811..f439e3e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,13 +1,14 @@ module.exports = function (grunt) { grunt.initConfig({ nwjs: { - options: { - mode: "get", - version: "0.85.0", - flavor: "sdk", - glob: false, - }, - src: "test/app", + get: { + options: { + mode: "get", + version: "0.85.0", + flavor: "sdk" + }, + src: "test/app", + } }, }); diff --git a/README.md b/README.md index f8d3511..e3841a2 100644 --- a/README.md +++ b/README.md @@ -22,12 +22,14 @@ When globbing is enabled: ```patch grunt.initConfig({ nwjs: { - options: { + get: { + options: { mode: "build", - srcDir: "./package.json ./app/**/*", version: "0.85.0", }, + src: [ "./package.json", "./app/**/*" ], + }, }, }); ``` @@ -37,15 +39,17 @@ When globbing is enabled: ```patch grunt.initConfig({ nwjs: { - options: { + get: { + options: { mode: "get", - srcDir: "./app", version: "0.85.0", glob: false, }, + src: "./app", + }, }, }); ``` -Refer to `nw-builder`'s [docs](https://nwutils.io/nw-builder/) to learn what options to input. +Refer to `nw-builder`'s [docs](https://github.com/nwutils/nw-builder) to learn what options to input.