Use latest (main) for all actions

This commit is contained in:
Edward Firmo
2025-07-29 10:22:11 +02:00
parent 66d1b27c0d
commit 982c64c1c1

View File

@@ -36,9 +36,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@main
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@main
with: with:
python-version: '3.11' python-version: '3.11'
- name: Install Yamllint - name: Install Yamllint
@@ -57,9 +57,9 @@ jobs:
version: [latest, beta, dev] version: [latest, beta, dev]
target: [core, basic, hw_relays, hw_speaker, hw_vibration, ble_proxy, media_player] target: [core, basic, hw_relays, hw_speaker, hw_vibration, ble_proxy, media_player]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@main
- name: Build ${{ matrix.target }} (${{ matrix.framework }}) - ${{ matrix.version }} - name: Build ${{ matrix.target }} (${{ matrix.framework }}) - ${{ matrix.version }}
uses: esphome/build-action@v4 uses: esphome/build-action@main
with: with:
yaml-file: ".test/esphome_${{ matrix.framework }}_${{ matrix.target }}.yaml" yaml-file: ".test/esphome_${{ matrix.framework }}_${{ matrix.target }}.yaml"
version: ${{ matrix.version }} version: ${{ matrix.version }}