Skip to content

Commit d870e3d

Browse files
authored
Merge pull request #47 from OpenVoiceOS/fix/dont_match_weather
Fix/dont match weather
1 parent d34bcd0 commit d870e3d

File tree

30 files changed

+77
-32
lines changed

30 files changed

+77
-32
lines changed

.github/workflows/build_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
build_tests:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
ref: ${{ github.head_ref }}
1313
- name: Setup Python
14-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: "3.11"
1717
- name: Install Build Tools

.github/workflows/install_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
python-version: [ "3.10", "3.11" ]
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Setup Python
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install Build Tools

.github/workflows/license_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
license_tests:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Setup Python
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.11"
2020
- name: Install Build Tools

.github/workflows/publish_stable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
if: success() # Ensure this job only runs if the previous job succeeds
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
2424
ref: master
2525
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
2626
- name: Setup Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: "3.11"
3030
- name: Install Build Tools
@@ -47,7 +47,7 @@ jobs:
4747
if: success() # Ensure this job only runs if the previous job succeeds
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151
with:
5252
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
5353
ref: master

.github/workflows/release_workflow.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
ref: dev
1818
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1919
- name: Setup Python
20-
uses: actions/setup-python@v1
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: "3.11"
2323

@@ -52,7 +52,7 @@ jobs:
5252
needs: publish_alpha
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v4
5656
- name: Send message to Matrix bots channel
5757
id: matrix-chat-message
5858
uses: fadenb/[email protected]
@@ -68,12 +68,12 @@ jobs:
6868
if: success() # Ensure this job only runs if the previous job succeeds
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@v2
71+
- uses: actions/checkout@v4
7272
with:
7373
ref: dev
7474
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
7575
- name: Setup Python
76-
uses: actions/setup-python@v1
76+
uses: actions/setup-python@v5
7777
with:
7878
python-version: "3.11"
7979
- name: Install Build Tools
@@ -97,12 +97,12 @@ jobs:
9797
runs-on: ubuntu-latest
9898
steps:
9999
- name: Checkout dev branch
100-
uses: actions/checkout@v3
100+
uses: actions/checkout@v4
101101
with:
102102
ref: dev
103103

104104
- name: Setup Python
105-
uses: actions/setup-python@v2
105+
uses: actions/setup-python@v5
106106
with:
107107
python-version: '3.10'
108108

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
runs-on: ubuntu-latest
3838
timeout-minutes: 15
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- name: Set up python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v2
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install System Dependencies
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
meteorològiques
2+
metereologia
3+
temps
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vejr
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Meteorologie
2+
Wetter
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
meteorology
2+
weather

0 commit comments

Comments
 (0)