From 982c64c1c1397284402a947e3b9d974ff48ee1a6 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Tue, 29 Jul 2025 10:22:11 +0200 Subject: [PATCH] Use latest (`main`) for all actions --- .github/workflows/validate_esphome.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate_esphome.yml b/.github/workflows/validate_esphome.yml index 571ad8f..ce27d71 100644 --- a/.github/workflows/validate_esphome.yml +++ b/.github/workflows/validate_esphome.yml @@ -36,9 +36,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@main - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@main with: python-version: '3.11' - name: Install Yamllint @@ -57,9 +57,9 @@ jobs: version: [latest, beta, dev] target: [core, basic, hw_relays, hw_speaker, hw_vibration, ble_proxy, media_player] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main - name: Build ${{ matrix.target }} (${{ matrix.framework }}) - ${{ matrix.version }} - uses: esphome/build-action@v4 + uses: esphome/build-action@main with: yaml-file: ".test/esphome_${{ matrix.framework }}_${{ matrix.target }}.yaml" version: ${{ matrix.version }}