From aa2281e3caced7be920bc5c62b53d35230317472 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 11:45:47 +0000 Subject: [PATCH] File sync from bmos/fg-workflows --- .github/workflows/luacheck.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml index 0908b43..9adac2f 100644 --- a/.github/workflows/luacheck.yml +++ b/.github/workflows/luacheck.yml @@ -22,42 +22,42 @@ jobs: # Determine extension name - name: Get Extension Name from XML id: getnamefromxml - uses: mavrosxristoforos/get-xml-info@1.2.1 + uses: mavrosxristoforos/get-xml-info@2.0 with: xml-file: 'extension.xml' xpath: '//properties//name' - name: Format Extension Name id: removenameprefix - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.getnamefromxml.outputs.info }} regex: '[A-Za-z]+:\s+' replacement: '' - id: removenametabs - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removenameprefix.outputs.value }} regex: " " replacement: '' - id: removeapostrophes - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removenametabs.outputs.value }} regex: "'" replacement: '' - id: removenamepunctuation - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removeapostrophes.outputs.value }} regex: '[^\w\s].*' replacement: '' - id: removenamespaces - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removenamepunctuation.outputs.value }} regex: '\s' @@ -71,42 +71,42 @@ jobs: # Determine extension author - name: Get Author Name from XML id: getauthorfromxml - uses: mavrosxristoforos/get-xml-info@1.2.1 + uses: mavrosxristoforos/get-xml-info@2.0 with: xml-file: 'extension.xml' xpath: '//properties//author' - name: Format author name id: removeauthorprefix - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.getauthorfromxml.outputs.info }} regex: '[A-Za-z]+:\s' replacement: '' - id: removeauthortabs - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removeauthorprefix.outputs.value }} regex: " " replacement: '' - id: removeauthorapostrophes - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removeauthortabs.outputs.value }} regex: "'" replacement: '' - id: removeauthorpunctuation - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removeauthorapostrophes.outputs.value }} regex: '[^\w\s].*' replacement: '' - id: removeauthorspaces - uses: ashley-taylor/regex-property-action@v1 + uses: bmos/regex-property-action@v1 with: value: ${{ steps.removeauthorpunctuation.outputs.value }} regex: '\s'