From 9a9324c5278b1d964877b69aa5c138cc969ed162 Mon Sep 17 00:00:00 2001 From: oigabrielteodoro Date: Sun, 26 Nov 2023 11:53:07 -0300 Subject: [PATCH] fix: versions checkout and setup-node --- .github/workflows/publish.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- src/html/index.html | 11 ----------- src/html/powered-by.element.js | 2 +- 4 files changed, 5 insertions(+), 16 deletions(-) delete mode 100644 src/html/index.html diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dba72d6..48942d9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,8 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 18.x registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10f4406..3cb8c80 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,14 +19,14 @@ jobs: name: Create new version ${{ github.event.inputs.version }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: main - run: | git config user.name github-actions git config user.email github-actions@github.com - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 18.x diff --git a/src/html/index.html b/src/html/index.html deleted file mode 100644 index 24e15e5..0000000 --- a/src/html/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/html/powered-by.element.js b/src/html/powered-by.element.js index 8cbc8c3..b319d70 100644 --- a/src/html/powered-by.element.js +++ b/src/html/powered-by.element.js @@ -12,7 +12,7 @@ class PoweredBy extends HTMLElement { connectedCallback() { this.innerHTML = ` - Powered by Explow + Powered by Explow `; }