Skip to content

Commit

Permalink
use actions/checkout@v3 for node16
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Lagg committed Nov 19, 2023
1 parent 916b5b7 commit b427313
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .git-subtree/python-govee-api/.github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
pip install tox tox-gh-actions
- name: Test with tox
run: tox

bump-alpha:
needs: test
if: |
Expand All @@ -39,7 +39,7 @@ jobs:
matrix:
python-version: ['3.x']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
fetch-depth: 0
Expand All @@ -63,7 +63,7 @@ jobs:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
tags: "true"
branch: ${{ github.ref }}

bump-beta:
needs: test
if: |
Expand All @@ -75,7 +75,7 @@ jobs:
matrix:
python-version: ['3.x']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
fetch-depth: 0
Expand All @@ -99,7 +99,7 @@ jobs:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
tags: "true"
branch: ${{ github.ref }}

bump-stable:
needs: test
if: |
Expand All @@ -111,7 +111,7 @@ jobs:
matrix:
python-version: ['3.x']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
fetch-depth: 0
Expand All @@ -135,7 +135,7 @@ jobs:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
tags: "true"
branch: ${{ github.ref }}

deploy:
needs: test
if: |
Expand All @@ -144,7 +144,7 @@ jobs:
(github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/stable')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hacs-hass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: HACS Action
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"
- name: HACS Action
uses: "hacs/action@main"
with:
Expand All @@ -20,5 +20,5 @@ jobs:
hassfest:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"
- uses: home-assistant/actions/hassfest@master
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: "ubuntu-latest"
name: Check style formatting
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v1"
with:
python-version: "3.x"
Expand Down

0 comments on commit b427313

Please sign in to comment.