diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4c3bbf783..d8ad4ca41 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,11 +35,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -50,7 +50,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -64,4 +64,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 69068b069..dbd615bf8 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -32,7 +32,7 @@ jobs: - name: Publish to coveralls.io if: github.repository == 'IgniteUI/ignite-ui' && matrix.node-version == '20.x' - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v1.2.1 with: path-to-lcov: ./coverage/lcov.info github-token: ${{ github.token }} diff --git a/src/js/modules/infragistics.templating.js b/src/js/modules/infragistics.templating.js index 36a862d81..e65c959ac 100644 --- a/src/js/modules/infragistics.templating.js +++ b/src/js/modules/infragistics.templating.js @@ -127,7 +127,7 @@ Use $.ig.regExp.sub.exec(tmpl) in order to get the substitution element in the tmpl string */ nonEncodeSub: /\{\{html\s+([^\s{}]+(\.|\s)?[^\s{}]*)+\}\}/, - forSub: /\$\{(([\w\$]+\.[\w\$]*)+)\}/, + forSub: /\$\{([\w\$]+\.[\w\$]+(?:\.[\w\$]+)*)\}/, arg: /args\[\d+\](?!.*\+)/, /* type="RegExp" Matches any block directive in the template Use $.ig.regExp.block.exec(tmpl) in order to get the block directive in the tmpl string