Skip to content

Commit

Permalink
Merge pull request #1 from DRSchlaubi/patch-1
Browse files Browse the repository at this point in the history
Update CI actions
  • Loading branch information
DRSchlaubi authored Jul 11, 2024
2 parents 0a65417 + aaf6679 commit 6162072
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/builder-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v4

- name: Get information
id: info
Expand All @@ -33,15 +33,15 @@ jobs:

- name: Login to GitHub Container Registry
if: env.BUILD_ARGS != '--test'
uses: docker/login-action@v2.0.0
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node
id: setup_node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12

Expand All @@ -58,7 +58,7 @@ jobs:
echo "{dev_version}={$version}" >> "$GITHUB_OUTPUT"
echo "::debug::Version set to $version"
- name: Build ${{ matrix.addon }} add-on
uses: home-assistant/builder@2023.09.0
uses: home-assistant/builder@2024.03.5
with:
args: |
${{ env.BUILD_ARGS }} \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/builder-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v4

- name: Get information
id: info
Expand All @@ -30,15 +30,15 @@ jobs:

- name: Login to GitHub Container Registry
if: env.BUILD_ARGS != '--test'
uses: docker/login-action@v2.0.0
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node
id: setup_node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12

Expand All @@ -55,7 +55,7 @@ jobs:
echo "{rc_version}={$rc_version}" >> "$GITHUB_OUTPUT"
echo "::debug::Version set to $rc_version"
- name: Build ${{ matrix.addon }} add-on
uses: home-assistant/builder@2023.09.0
uses: home-assistant/builder@2024.03.5
with:
args: |
${{ env.BUILD_ARGS }} \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3.0.2
uses: actions/checkout@v4

- name: Get information
id: info
Expand All @@ -33,7 +33,7 @@ jobs:

- name: Login to GitHub Container Registry
if: env.BUILD_ARGS != '--test'
uses: docker/login-action@v2.0.0
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -52,7 +52,7 @@ jobs:
npm run-script build
- name: Build ${{ matrix.addon }} add-on
uses: home-assistant/builder@2023.09.0
uses: home-assistant/builder@2024.03.5
with:
args: |
${{ env.BUILD_ARGS }} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3.0.2
uses: actions/checkout@v4

- name: 🚀 Run Home Assistant Add-on Lint
uses: frenck/action-addon-linter@v2.13.2
Expand Down

0 comments on commit 6162072

Please sign in to comment.