Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Some more fixes - will not pass, but less errors.
  • Loading branch information
BeardedTinker committed May 15, 2023
1 parent 374c086 commit 13de2f3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ on:

jobs:
yamllint:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Getting your configuration from GitHub
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Running YAMLlint
uses: ibiqlik/action-yamllint@v1
continue-on-error: true
with:
config_file: .github/yamllint-config.yml
remarklint:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Getting your configuration from GitHub
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Running Remark lint
uses: "docker://pipelinecomponents/remark-lint:latest"
continue-on-error: true
with:
args: "remark --no-stdout --color --frail --use preset-lint-recommended ."
home_assistant_current:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [yamllint, remarklint]
steps:
- name: Getting your configuration from GitHub
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Check config
run: hass -c . --script check_config --info all
home_assistant_stable:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [yamllint, remarklint]
steps:
- name: Getting your configuration from GitHub
Expand All @@ -81,7 +81,7 @@ jobs:
with:
args: python -m homeassistant --config ./ --script check_config --info all
home_assistant_beta:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [yamllint, remarklint]
steps:
- name: Getting your configuration from GitHub
Expand All @@ -104,7 +104,7 @@ jobs:
with:
args: python -m homeassistant --config ./ --script check_config --info all
home_assistant_dev:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [yamllint, remarklint]
steps:
- name: Getting your configuration from GitHub
Expand Down

0 comments on commit 13de2f3

Please sign in to comment.