Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Build Tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/license_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
license_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Build Tools
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
if: success() # Ensure this job only runs if the previous job succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Build Tools
Expand All @@ -47,7 +47,7 @@ jobs:
if: success() # Ensure this job only runs if the previous job succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
ref: master
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.11"

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
needs: publish_alpha
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Send message to Matrix bots channel
id: matrix-chat-message
uses: fadenb/[email protected]
Expand All @@ -65,12 +65,12 @@ jobs:
if: success() # Ensure this job only runs if the previous job succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Build Tools
Expand All @@ -93,12 +93,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout dev branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: dev

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install System Dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from os import walk, path


URL = "https://github.com/OpenVoiceOS/skill-ovos-volume"
URL = "https://github.com/OpenVoiceOS/ovos-skill-volume"
SKILL_CLAZZ = "VolumeSkill" # needs to match __init__.py class name
PYPI_NAME = "ovos-skill-volume" # pip install PYPI_NAME

Expand Down
4 changes: 2 additions & 2 deletions test/unittests/osm_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
from ovos_skills_manager import SkillEntry

branch = "dev"
url = f"https://github.com/OpenVoiceOS/skill-ovos-volume@{branch}"
url = f"https://github.com/OpenVoiceOS/ovos-skill-volume@{branch}"


class TestOSM(unittest.TestCase):
@classmethod
def setUpClass(self):
self.skill_id = "skill-ovos-volume.openvoiceos"
self.skill_id = "ovos-skill-volume.openvoiceos"

def test_osm_install(self):
skill = SkillEntry.from_github_url(url)
Expand Down
2 changes: 1 addition & 1 deletion test/unittests/plugin_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class TestPlugin(unittest.TestCase):
@classmethod
def setUpClass(self):
self.skill_id = "skill-ovos-volume.openvoiceos"
self.skill_id = "ovos-skill-volume.openvoiceos"

def test_find_plugin(self):
plugins = find_skill_plugins()
Expand Down
2 changes: 1 addition & 1 deletion test/unittests/test_skill_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class TestSkillLoading(unittest.TestCase):
@classmethod
def setUpClass(self):
self.skill_id = "skill-ovos-volume.openvoiceos"
self.skill_id = "ovos-skill-volume.openvoiceos"
self.path = dirname(dirname(dirname(__file__)))

def test_from_class(self):
Expand Down
Loading