From 536398e71efd235813a0c03a2931660d67da34a8 Mon Sep 17 00:00:00 2001 From: Sven Serlier <85389871+wrt54g@users.noreply.github.com> Date: Wed, 6 Jul 2022 22:08:00 +0200 Subject: [PATCH] Update actions (#54) --- .github/workflows/bump-version.yml | 8 ++++---- .github/workflows/lint.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index cc0d636..309dcb4 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3.0.2 + - uses: actions/setup-python@v4 with: python-version: '3.x' - run: pip install -r script/requirements.txt @@ -30,7 +30,7 @@ jobs: echo "::set-output name=commit_sha::${COMMIT}" - if: ${{ contains(github.event.inputs.version, 'b') }} name: Create Beta Release - uses: actions/create-release@v1 + uses: actions/create-release@v1.1.4 continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -42,7 +42,7 @@ jobs: commitish: ${{ steps.commit_version.outputs.commit_sha }} - if: ${{ !contains(github.event.inputs.version, 'b') }} name: Create Stable Release - uses: actions/create-release@v1 + uses: actions/create-release@v1.1.4 continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3848933..75b450f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,9 +19,9 @@ jobs: channel: dev steps: - name: โคต๏ธ Check out code from GitHub - uses: actions/checkout@v2 + uses: actions/checkout@v3.0.2 - name: ๐Ÿ›  Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: ๐Ÿ›  Install dependencies @@ -29,6 +29,6 @@ jobs: - name: ๐Ÿ›  Generate files from template run: python script/generate.py ${{ matrix.channels.channel }} - name: ๐Ÿš€ Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }} - uses: frenck/action-addon-linter@v2 + uses: frenck/action-addon-linter@v2.9.0 with: path: "./${{ matrix.channels.folder }}"