Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/addon-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
config-file: ${{ steps.information.outputs.config }}
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ℹ️ Gather addon info
id: information
Expand All @@ -37,7 +37,7 @@ jobs:
- information
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run Home Assistant Add-on Lint
uses: frenck/action-addon-linter@v2
Expand All @@ -52,7 +52,7 @@ jobs:
- information
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run hadolint
uses: hadolint/[email protected]
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run ShellCheck
uses: ludeeus/[email protected]
Expand All @@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run markdownlint
uses: nosborn/[email protected]
Expand All @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run yamllint
uses: ibiqlik/action-yamllint@v3
Expand All @@ -104,7 +104,7 @@ jobs:
fail-fast: false
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ℹ️ Generate addon meta info
id: addon-meta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/addon-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
environment: ${{ steps.release.outputs.environment }}
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ℹ️ Gather addon info
id: information
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
architecture: ${{ fromJson(needs.information.outputs.architectures) }}
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ℹ️ Generate addon meta info
id: addon-meta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/addon-update-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os-version: ${{ steps.os-info.outputs.version }}
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: ℹ️ Gather addon info
id: information
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
pull-requests: write
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/iac-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🏗️ Setup terraform
uses: hashicorp/setup-terraform@v3
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- plan
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🏗️ Setup terraform
uses: hashicorp/setup-terraform@v3
Expand All @@ -74,7 +74,7 @@ jobs:
cli_config_credentials_token: ${{ secrets.TERRAFORM_CLOUD_TOKEN }}

- name: ⤵️ Get plan artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: github-iac-artifact
path: github-iac
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/repository-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run markdownlint
uses: nosborn/[email protected]
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run yamllint
uses: ibiqlik/action-yamllint@v3
4 changes: 2 additions & 2 deletions .github/workflows/workflows-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run markdownlint
uses: nosborn/[email protected]
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Run yamllint
uses: ibiqlik/action-yamllint@v3
Loading