Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
krahabb committed Jan 28, 2024
1 parent d13e024 commit aad024f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: "ubuntu-latest"
name: Validate
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"

- name: HACS validation
uses: "hacs/action@main"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: "ubuntu-latest"
name: Validate
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"

- name: HACS validation
uses: "hacs/action@main"
Expand All @@ -26,8 +26,8 @@ jobs:
runs-on: "ubuntu-latest"
name: Check style formatting
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- run: python3 -m pip install black
Expand All @@ -38,9 +38,9 @@ jobs:
name: Run tests
steps:
- name: Check out code from GitHub
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"
- name: Setup Python
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: "ubuntu-latest"
name: Validate
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"

- name: HACS validation
uses: "hacs/action@main"
Expand All @@ -25,8 +25,8 @@ jobs:
runs-on: "ubuntu-latest"
name: Check style formatting
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- run: python3 -m pip install black
Expand All @@ -37,9 +37,9 @@ jobs:
name: Run tests
steps:
- name: Check out code from GitHub
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"
- name: Setup Python
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
Expand Down

0 comments on commit aad024f

Please sign in to comment.