From b545a32b5a642ed5cf888656f9cbd4733c84ebc8 Mon Sep 17 00:00:00 2001 From: sidey79 <7968127+sidey79@users.noreply.github.com> Date: Wed, 26 Oct 2022 10:39:52 +0200 Subject: [PATCH] build pipeline cleanups (#169) * Update nodejs.yml Remove node14 remove action for fetching branch * Update README.md * Update tagrelease.yml Update autotag action * Update tagrelease.yml --- .github/workflows/nodejs.yml | 5 +---- .github/workflows/tagrelease.yml | 7 +++---- README.md | 4 ++-- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 994bea6b..caa5f7ea 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -41,7 +41,7 @@ jobs: strategy: matrix: FILES_EXTENSION: [.pm, .bck, .pm.bck, .pm|.bck ] - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x] env: CONTROLS_FILE: controls_tests.txt @@ -110,9 +110,6 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - uses: actions/checkout@v3 - - name: Extract branch name - uses: vazco/github-actions-branch-name@v1.0.1 - id: branch - name: Prepare Node.js uses: actions/setup-node@v3 with: diff --git a/.github/workflows/tagrelease.yml b/.github/workflows/tagrelease.yml index 82f73b7a..790513b9 100644 --- a/.github/workflows/tagrelease.yml +++ b/.github/workflows/tagrelease.yml @@ -14,9 +14,8 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Auto tag - uses: Klemensas/action-autotag@1.2.3 + - name: Create tag automatic + uses: butlerlogic/action-autotag@1.1.2 with: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - package_root: ./ + root: ./ tag_prefix: "v" diff --git a/README.md b/README.md index a4dec655..158f001d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Same content which is also written into the controls file ``` steps: - name: Checkout Repostory - uses: actions/checkout@v1 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -45,7 +45,7 @@ Same content which is also written into the controls file 2. You can create the controls file ``` - name: update controls files - uses: fhem/fhem-controls-actions@v2.00b + uses: fhem/fhem-controls-actions@v2.0.3 with: filename: controls_rsl.txt ```