{"id":9998,"name":"microsoft/action-python","ecosystem":"actions","repository_url":"https://github.com/microsoft/action-python","issues_count":18,"created_at":"2025-06-06T22:41:43.852Z","updated_at":"2025-06-06T22:41:43.852Z","purl":"pkg:githubactions/microsoft/action-python","metadata":{"id":5803693,"name":"microsoft/action-python","ecosystem":"actions","description":"Run actions for Python Project on pull requests to improve code review experience.","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/microsoft/action-python","keywords_array":[],"namespace":"microsoft","versions_count":39,"first_release_published_at":"2022-09-25T05:10:46.000Z","latest_release_published_at":"2024-05-16T23:01:28.000Z","latest_release_number":"0.7.3","last_synced_at":"2025-05-29T00:17:59.703Z","created_at":"2023-01-04T14:39:49.368Z","updated_at":"2025-05-29T00:17:59.703Z","registry_url":"https://github.com/microsoft/action-python","install_command":null,"documentation_url":null,"metadata":{"name":"Python Actions Collection","description":"Run actions for Python Project on pull requests to improve code review experience.","author":"dciborow","inputs":{"root":{"description":"Project root directory.\nDefault '.'\n","default":"."},"toml":{"description":"pyproject.toml location.\nDefault pyproject.toml\n","default":"pyproject.toml"},"python_version":{"description":"Python Version\nDefault is '3.7'.\n","default":"3.7"},"black":{"description":"Run Black\nDefault is false.\n","default":false},"bandit":{"description":"Run Bandit\nDefault is false.\n","default":false},"pylint":{"description":"Run Pylint\nDefault is false.\n","default":false},"pyright":{"description":"Run Pyright\nDefault is false.\n","default":false},"flake8":{"description":"Run Flake8\nDefault is false.\n","default":false},"pytest":{"description":"Run tests with PyTest\nDefault is false.\n","default":false},"pypi_publish":{"description":"Publish to PyPi\nDefault is false\n","default":false},"args":{"description":"Customize which tests run with Pytest Markers\n","default":""},"pypi_repo":{"description":"PyPi Target. Use this to point to private or test locations.      \nDefault testpypi\n","default":"pypi"},"pypi_password":{"description":"Credentials for PyPi\n","default":""},"version_suffix":{"description":"Value to append to version in order to produce unique id for PyPi.\nExamples include: \n  '-rc {{ github.run_attempt }}'\n  '-dev {{ github.run_attempt }}'\n","default":""},"github_token":{"description":"GITHUB_TOKEN","default":"${{ github.token }}"},"workdir":{"description":"Working directory relative to the root directory.","default":"src"},"testdir":{"description":"Test directory","default":"tests"},"coverage":{"description":"Flags for code coverage","default":true},"flags":{"description":"Flags for code coverage","default":"unittests"},"level":{"description":"Report level for reviewdog [info,warning,error]","default":"error"},"reporter":{"description":"Reporter of reviewdog command [github-pr-check,github-pr-review].","default":"github-pr-check"},"filter_mode":{"description":"Filtering mode for the reviewdog command [added,diff_context,file,nofilter].\nDefault is added.\n","default":"added"},"fail_on_error":{"description":"Exit code for reviewdog when errors are found [true,false]\nDefault is `false`.\n","default":"false"},"reviewdog_flags":{"description":"Additional reviewdog flags","default":""}},"runs":{"using":"composite","steps":[{"if":"${{ inputs.black == 'true' }}","uses":"rickstaa/action-black@v1","id":"action_black","with":{"black_args":"--config ${{ inputs.root }}/${{ inputs.toml }} ${{ inputs.root }}/${{ inputs.workdir }}"}},{"if":"steps.action_black.outputs.is_formatted == 'true'","uses":"reviewdog/action-suggester@v1","with":{"tool_name":"blackfmt","fail_on_error":true}},{"if":"${{ inputs.bandit  == 'true' }}","uses":"dciborow/action-bandit@0.0.2","with":{"workdir":"${{ inputs.root }}"}},{"if":"${{ inputs.flake8  == 'true' }}","run":"if [ $(cat pyproject.toml | grep \"tool.flake8\") ]; then\n  python -m pip install --upgrade pip\n  python -m pip install flake8-pyproject\nfi\n","shell":"bash"},{"if":"${{ inputs.flake8  == 'true' }}","uses":"reviewdog/action-flake8@v3","with":{"github_token":"${{ inputs.github_token }}","workdir":"${{ inputs.root }}/${{ inputs.workdir }}"}},{"if":"${{ inputs.pylint == 'true' }}","uses":"actions/setup-python@v5","with":{"python-version":"${{ inputs.python_version }}","cache":"pip"}},{"if":"${{ inputs.pylint == 'true' }}","shell":"bash","run":"python -m pip install --upgrade pip\npython -m pip install pylint\ncd \"${{ inputs.root }}/${{ inputs.workdir }}\"\npython -m flit install || python -m pip install .\n"},{"if":"${{ inputs.pylint == 'true' }}","uses":"dciborow/action-pylint@0.1.1","with":{"github_token":"${{ inputs.github_token }}","workdir":"${{ inputs.root }}/${{ inputs.workdir }}"}},{"if":"${{ inputs.pyright == 'true' }}","uses":"jakebailey/pyright-action@v1.8.1","with":{"working-directory":"${{ inputs.root }}/${{ inputs.workdir }}","project":"${{ inputs.toml }}"}},{"if":"${{ inputs.pytest == 'true' || inputs.pypi_publish  == 'true' }}","uses":"actions/setup-python@v5","with":{"python-version":"${{ inputs.python_version }}","cache":"pip"}},{"if":"${{ inputs.pytest == 'true' }}","shell":"bash","run":"python -m pip install --upgrade pip\npython -m pip install pytest pytest-xdist pytest-cov flit requests_mock\ncd \"${{ inputs.root }}/${{ inputs.workdir }}\"\npython -m flit install || python -m pip install .\npython -m pytest '${{ inputs.args }}' ${{ inputs.testdir }}\n"},{"if":"${{ inputs.pytest == 'true' \u0026\u0026 inputs.coverage == 'true' }}","uses":"codecov/codecov-action@v3","with":{"flags":"${{ inputs.flags }}"}},{"if":"${{ inputs.pypi_publish == 'true' }}","shell":"bash","env":{"FLIT_USERNAME":"__token__","FLIT_PASSWORD":"${{ inputs.pypi_password }}"},"run":"cd \"${{ inputs.root }}\"\n\npython -m pip install --upgrade pip\npython -m pip install flit\n\nsed -i -r 's/\\\"[0-9]\\.[0-9]\\.[0-9]+\\\"/\u0026\\\"${{ inputs.version_suffix }}\\\"/g' src/*/__init__.py\npython -m flit publish $repository --repository ${{ inputs.pypi_repo }} --pypirc .pypirc\n"}]},"branding":{"icon":"check","color":"blue"},"default_branch":"main","path":null},"repo_metadata":{"id":60169035,"uuid":"531747004","full_name":"microsoft/action-python","owner":"microsoft","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-16T23:02:12.000Z","size":104,"stargazers_count":39,"open_issues_count":1,"forks_count":14,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-05-16T23:50:43.649Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/microsoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-02T01:55:12.000Z","updated_at":"2024-05-16T23:01:32.000Z","dependencies_parsed_at":"2024-05-16T23:48:51.023Z","dependency_job_id":null,"html_url":"https://github.com/microsoft/action-python","commit_stats":{"total_commits":27,"total_committers":1,"mean_commits":27.0,"dds":0.0,"last_synced_commit":"a0b154cfe8b9f2ab32fc6390470aee66c7d9ebe3"},"previous_names":[],"tags_count":39,"template":false,"template_full_name":"dciborow/pyaction","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microsoft","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":202996789,"owners_count":14088048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"microsoft","name":"Microsoft","uuid":"6154722","kind":"organization","description":"Open source projects and samples from Microsoft","email":"opensource@microsoft.com","website":"https://opensource.microsoft.com","location":"Redmond, WA","twitter":"OpenAtMicrosoft","company":null,"icon_url":"https://avatars.githubusercontent.com/u/6154722?v=4","repositories_count":6227,"last_synced_at":"2024-04-08T00:10:14.916Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/microsoft","funding_links":[],"total_stars":2659258,"followers":63990,"following":0,"created_at":"2022-11-02T16:20:12.368Z","updated_at":"2024-04-08T00:20:04.754Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microsoft","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microsoft/repositories"},"tags":[{"name":"0.7.3","sha":"00afd9876614ecf1b756489fdc3b604e92dee27d","kind":"commit","published_at":"2024-05-16T23:01:28.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.7.3","html_url":"https://github.com/microsoft/action-python/releases/tag/0.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.3/manifests"},{"name":"0.7.2","sha":"c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607","kind":"commit","published_at":"2023-09-14T21:17:37.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.7.2","html_url":"https://github.com/microsoft/action-python/releases/tag/0.7.2","dependencies_parsed_at":"2023-09-17T07:23:32.549Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.2/manifests"},{"name":"0.7.1","sha":"00a1b4b98b48da3404eee8440de577dfc89fcb86","kind":"commit","published_at":"2023-07-04T19:10:12.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.7.1","html_url":"https://github.com/microsoft/action-python/releases/tag/0.7.1","dependencies_parsed_at":"2023-07-06T07:26:37.745Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.1/manifests"},{"name":"0.7.0","sha":"f6c337c64d58426e09672ba80bf1cefb3985fb3b","kind":"commit","published_at":"2023-05-17T08:36:02.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.7.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.7.0","dependencies_parsed_at":"2023-06-02T00:36:30.719Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.7.0/manifests"},{"name":"0.6.4","sha":"7d2126865ee9d3da8022d8a71c51734337eeae53","kind":"commit","published_at":"2023-05-11T21:35:31.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.6.4","html_url":"https://github.com/microsoft/action-python/releases/tag/0.6.4","dependencies_parsed_at":"2023-06-02T00:36:33.697Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.4/manifests"},{"name":"0.6.3","sha":"7c878c2efaca54f743c0c76dd5035820889094a1","kind":"commit","published_at":"2023-05-03T20:29:50.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.6.3","html_url":"https://github.com/microsoft/action-python/releases/tag/0.6.3","dependencies_parsed_at":"2023-06-02T00:36:30.264Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.3/manifests"},{"name":"0.6.2","sha":"be58e68b67eae02030a7d8abe0707b790d755a7f","kind":"commit","published_at":"2023-05-03T17:46:24.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.6.2","html_url":"https://github.com/microsoft/action-python/releases/tag/0.6.2","dependencies_parsed_at":"2023-06-02T00:36:30.626Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.2/manifests"},{"name":"0.6.1","sha":"9497388c372bac6994a3efc88838821e54bf0c05","kind":"commit","published_at":"2023-05-02T17:02:38.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.6.1","html_url":"https://github.com/microsoft/action-python/releases/tag/0.6.1","dependencies_parsed_at":"2023-06-02T00:36:33.919Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.1/manifests"},{"name":"0.6.0","sha":"93ece9bfa602fae237f0a864fc0496b2fd56279d","kind":"commit","published_at":"2023-05-02T03:46:01.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.6.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.6.0","dependencies_parsed_at":"2023-06-02T00:36:32.440Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.6.0/manifests"},{"name":"0.5.0","sha":"d70523783c330bc259bd655cd21df3e9dcd8f34a","kind":"commit","published_at":"2023-04-30T21:58:00.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.5.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.5.0","dependencies_parsed_at":"2023-06-02T00:36:33.772Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.5.0/manifests"},{"name":"0.4.0","sha":"036c2f6d0ddd73c1b679c45e9e18e622ddaf72dd","kind":"commit","published_at":"2023-04-29T00:26:18.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.4.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.4.0","dependencies_parsed_at":"2023-06-02T00:36:34.160Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.4.0/manifests"},{"name":"0.3.23","sha":"8ff21fe76eb1a87f1615b02d2ab675d278ed0019","kind":"commit","published_at":"2023-04-25T17:42:50.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.23","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.23","dependencies_parsed_at":"2023-06-02T00:36:33.782Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.23/manifests"},{"name":"0.3.22","sha":"c577e02dcd0b94a4d12bd676e64801f25ec5280a","kind":"commit","published_at":"2023-04-25T17:33:35.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.22","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.22","dependencies_parsed_at":"2023-06-02T00:36:33.980Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.22/manifests"},{"name":"0.3.21","sha":"f0a836c1825c70e23c045572050190ffcd9a1da8","kind":"commit","published_at":"2023-04-25T00:56:58.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.21","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.21","dependencies_parsed_at":"2023-06-02T00:36:30.312Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.21/manifests"},{"name":"0.3.20","sha":"200f444bf8d5aa35b045f04e52b01930cfc7cffd","kind":"commit","published_at":"2023-04-24T19:43:25.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.20","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.20","dependencies_parsed_at":"2023-06-02T00:36:32.795Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.20/manifests"},{"name":"0.3.19","sha":"2a1a55272917f422b7880afd7f2d0d039ba779c0","kind":"commit","published_at":"2023-04-24T19:04:59.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.19","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.19","dependencies_parsed_at":"2023-06-02T00:36:33.289Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.19/manifests"},{"name":"0.3.18","sha":"fc8ac736f7579adbcd14251521ec57d577a48a10","kind":"commit","published_at":"2023-04-24T17:47:46.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.18","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.18","dependencies_parsed_at":"2023-06-02T00:36:33.023Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.18/manifests"},{"name":"0.3.17","sha":"5fbfaad678092a6ee6fe332275307971dcc70c09","kind":"commit","published_at":"2023-04-20T06:29:10.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.17","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.17","dependencies_parsed_at":"2023-06-02T00:36:30.837Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.17/manifests"},{"name":"0.3.16","sha":"d2d853693a6f13b6328670ddfa4373e26df264d3","kind":"commit","published_at":"2023-04-20T06:26:55.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.16","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.16","dependencies_parsed_at":"2023-06-02T00:36:32.928Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.16/manifests"},{"name":"0.3.15","sha":"1f9dc24572a2d2efff0e5cc19b681aa32a4c023b","kind":"commit","published_at":"2023-04-20T06:08:40.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.15","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.15","dependencies_parsed_at":"2023-06-02T00:36:33.817Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.15/manifests"},{"name":"0.3.14","sha":"9234bf7e65ed9dffb5cc546e2e29815baff289be","kind":"commit","published_at":"2023-04-20T04:23:40.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.14","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.14","dependencies_parsed_at":"2023-06-02T00:36:34.124Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.14/manifests"},{"name":"0.3.13","sha":"9d757a2d9622f606eda8a3b015d46461f344a18c","kind":"commit","published_at":"2023-04-20T04:14:54.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.13","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.13","dependencies_parsed_at":"2023-06-02T00:36:32.669Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.13/manifests"},{"name":"0.3.12","sha":"8981d02489e870b4e82684c0996c6776aa6da0af","kind":"commit","published_at":"2023-04-17T06:12:25.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.12","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.12","dependencies_parsed_at":"2023-06-02T00:36:34.490Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.12/manifests"},{"name":"0.3.11","sha":"0f3cf852294a892c57267be9806487a1216f6958","kind":"commit","published_at":"2023-04-17T05:03:18.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.11","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.11","dependencies_parsed_at":"2023-06-02T00:36:33.038Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.11/manifests"},{"name":"0.3.10","sha":"62a9303c20e5a681b8ebe06310c839073028e9e3","kind":"commit","published_at":"2023-04-15T07:21:07.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.10","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.10","dependencies_parsed_at":"2023-06-02T00:36:32.071Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.10/manifests"},{"name":"0.3.9","sha":"a0b154cfe8b9f2ab32fc6390470aee66c7d9ebe3","kind":"commit","published_at":"2023-03-12T22:37:07.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.9","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.9","dependencies_parsed_at":"2023-06-02T00:36:30.898Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.9/manifests"},{"name":"0.3.8","sha":"e2d91b91c1e49a51410bbe17f4889bdcd99bb056","kind":"commit","published_at":"2023-02-26T02:33:02.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.8","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.8","dependencies_parsed_at":"2023-06-02T00:36:32.646Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.8/manifests"},{"name":"0.3.7","sha":"b10d0bc1921b4557330c44383137d561cabb215f","kind":"commit","published_at":"2023-02-26T02:30:19.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.7","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.7","dependencies_parsed_at":"2023-06-02T00:36:30.348Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.7/manifests"},{"name":"0.3.6","sha":"3eefaeb7e7cda893d506f0980a501e5d589790b2","kind":"commit","published_at":"2023-02-26T02:10:15.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.6","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.6","dependencies_parsed_at":"2023-06-02T00:36:32.912Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.6/manifests"},{"name":"0.3.5","sha":"987092df8b9b692e024b16838fdcbbbdaa5a2af6","kind":"commit","published_at":"2023-02-26T02:05:03.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.5","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.5","dependencies_parsed_at":"2023-06-02T00:36:32.670Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.5/manifests"},{"name":"0.3.4","sha":"faa151d1e9392ca91eee6759e8883b3da96ef4f5","kind":"commit","published_at":"2023-02-26T02:02:13.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.4","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.4","dependencies_parsed_at":"2023-06-02T00:36:31.383Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.4/manifests"},{"name":"0.3.3","sha":"b2766eeaf55fc87e65489dc871577de3e6a7d54a","kind":"commit","published_at":"2023-02-26T01:57:18.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.3","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.3","dependencies_parsed_at":"2023-06-02T00:36:31.860Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.3/manifests"},{"name":"0.3.2","sha":"024d3f2a3425516eaa4021f42d34b50f47d3ec14","kind":"commit","published_at":"2023-02-26T01:54:40.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.2","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.2","dependencies_parsed_at":"2023-06-02T00:36:33.609Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.2/manifests"},{"name":"0.3.1","sha":"835926a80827d8144dddf59c185ba5d4c4b2a3f2","kind":"commit","published_at":"2023-02-26T01:51:32.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.1","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.1","dependencies_parsed_at":"2023-06-02T00:36:32.107Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.1/manifests"},{"name":"0.3.0","sha":"c1d14ab8ef830f6b0ca4fda9b374aec4f2bcd0e4","kind":"commit","published_at":"2023-02-26T01:45:46.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.3.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.3.0","dependencies_parsed_at":"2023-06-02T00:36:30.279Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.3.0/manifests"},{"name":"0.2.0","sha":"2ee47a9f14bee87960aa79d671580ce6acae198c","kind":"commit","published_at":"2022-09-25T05:30:45.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.2.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.2.0","dependencies_parsed_at":"2023-05-31T16:04:02.145Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.2.0/manifests"},{"name":"0.1.2","sha":"609ff6977e20ed222d790fd66d0f43a017e5b05d","kind":"commit","published_at":"2022-09-25T05:29:50.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.1.2","html_url":"https://github.com/microsoft/action-python/releases/tag/0.1.2","dependencies_parsed_at":"2023-05-31T16:04:03.025Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.2/manifests"},{"name":"0.1.1","sha":"683fb22ffddd1af07844bb7689f36a6c7e864f4d","kind":"commit","published_at":"2022-09-25T05:17:18.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.1.1","html_url":"https://github.com/microsoft/action-python/releases/tag/0.1.1","dependencies_parsed_at":"2023-05-31T16:04:03.703Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.1/manifests"},{"name":"0.1.0","sha":"1ea0573a4d3a1e20bc12dbea8e45fe9559661cde","kind":"commit","published_at":"2022-09-25T05:10:46.000Z","download_url":"https://codeload.github.com/microsoft/action-python/tar.gz/0.1.0","html_url":"https://github.com/microsoft/action-python/releases/tag/0.1.0","dependencies_parsed_at":"2023-05-31T16:04:04.481Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faction-python/tags/0.1.0/manifests"}]},"repo_metadata_updated_at":"2024-05-16T23:52:44.434Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":3,"rankings":{"downloads":null,"dependent_repos_count":18.04468388527967,"dependent_packages_count":0.0,"stargazers_count":8.10014260814451,"forks_count":6.794485818412296,"docker_downloads_count":null,"average":8.234828077959119},"purl":"pkg:githubactions/microsoft/action-python","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/microsoft/action-python","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/microsoft/action-python","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/microsoft/action-python/dependencies","status":null,"funding_links":[],"critical":null,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/microsoft%2Faction-python/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/microsoft%2Faction-python/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/microsoft%2Faction-python/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/microsoft%2Faction-python/related_packages","maintainers":[],"registry":{"name":"github actions","url":"https://github.com/marketplace/actions/","ecosystem":"actions","default":true,"packages_count":31631,"maintainers_count":0,"namespaces_count":19972,"keywords_count":6683,"github":"actions","metadata":{"funded_packages_count":2966},"icon_url":"https://github.com/actions.png","created_at":"2023-01-03T17:16:39.185Z","updated_at":"2025-06-07T05:39:45.903Z","packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages","maintainers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/maintainers","namespaces_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/namespaces"}},"unique_repositories_count":18,"unique_repositories_count_past_30_days":3,"recent_issues":[{"uuid":"2878063876","node_id":"PR_kwDOP6QwVc6ri8UE","number":13,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-10-01T12:30:32.000Z","updated_at":"2025-10-01T12:30:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nicolas-f/demonstrateur_yamnet_jpo/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicolas-f%2Fdemonstrateur_yamnet_jpo/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"},{"uuid":"2834907664","node_id":"PR_kwDOPxWOo86o-UIQ","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-09-17T02:32:44.000Z","updated_at":"2025-09-17T02:32:45.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/sacrosshowe/Sample-Python-Project/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/sacrosshowe%2FSample-Python-Project/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2812555703","node_id":"PR_kwDOPswdcc6npDG3","number":5,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-09-09T16:10:20.000Z","updated_at":"2025-09-09T16:10:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/xmaxrayx/pyhello/pull/5","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmaxrayx%2Fpyhello/issues/5","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5/packages"},{"uuid":"2744540069","node_id":"PR_kwDOPdnr5M6jllul","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-08-14T01:20:43.000Z","updated_at":"2025-08-14T01:20:43.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kisslim/shogi-designer/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kisslim%2Fshogi-designer/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"},{"uuid":"2690555138","node_id":"PR_kwDOPRxf7c6gXp0C","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-24T02:25:55.000Z","updated_at":"2025-07-24T02:25:56.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":null}],"path":null,"ecosystem":"actions"},"body":"\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/shadowkai0121/proxy_requests/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowkai0121%2Fproxy_requests/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2653273989","node_id":"PR_kwDOPJuU5c6eJb-F","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-09T15:32:26.000Z","updated_at":"2025-07-09T15:32:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jez020/CSVStatistician/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jez020%2FCSVStatistician/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"},{"uuid":"2651081259","node_id":"PR_kwDOPJQ3fc6eBEor","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-08T21:49:58.000Z","updated_at":"2025-07-08T21:49:59.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/veiii/tts-server/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/veiii%2Ftts-server/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2609170162","node_id":"PR_kwDOO_k-bM6bhMby","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-06-21T17:38:26.000Z","updated_at":"2025-06-21T17:38:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/xnoodlexboyx/pyPPET/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/xnoodlexboyx%2FpyPPET/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"2577244527","node_id":"PR_kwDOO4YnK86ZnaFv","number":8,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-06-09T03:19:01.000Z","updated_at":"2025-06-09T03:19:02.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Tuan2002/mezon-sdk/pull/8","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tuan2002%2Fmezon-sdk/issues/8","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8/packages"},{"uuid":"1292094150577056556","node_id":"PR_kwDOOzblys6YVBGr","number":4,"state":"closed","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":"2025-06-01T08:56:33.000Z","author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-05-30T20:34:31.000Z","updated_at":"2025-06-10T18:50:33.193Z","time_to_close":130922,"merged_at":"2025-06-01T08:56:33.000Z","merged_by":"andrea-alfonsi","closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/andrea-alfonsi/anemone-backend/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrea-alfonsi%2Fanemone-backend/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"2555646379","node_id":"PR_kwDOOzblys6YVBGr","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-30T20:34:31.000Z","updated_at":"2025-05-30T20:34:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/andrea-alfonsi/anemone/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrea-alfonsi%2Fanemone/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"2542311768","node_id":"PR_kwDOOwH_ms6XiJlY","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-25T09:05:44.000Z","updated_at":"2025-05-25T09:05:44.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/isaac-cf-wong/calsync/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaac-cf-wong%2Fcalsync/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2539951020","node_id":"PR_kwDOOvPq3s6XZJOs","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-23T13:55:40.000Z","updated_at":"2025-05-23T13:55:41.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/TheCuddlyBear/ChildesLib/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCuddlyBear%2FChildesLib/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"},{"uuid":"2538466035","node_id":"PR_kwDOOu44Tc6XTerz","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-22T23:46:49.000Z","updated_at":"2025-05-22T23:46:50.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/bohong/python-project-template/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohong%2Fpython-project-template/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2536575716","node_id":"PR_kwDOOueJKs6XMRLk","number":1,"state":"closed","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":"2025-05-22T10:38:37.000Z","author_association":"NONE","state_reason":null,"created_at":"2025-05-22T09:23:47.000Z","updated_at":"2025-05-22T10:38:37.000Z","time_to_close":4490,"merged_at":"2025-05-22T10:38:37.000Z","merged_by":"isaac-cf-wong","closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/isaac-cf-wong/paperlens/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaac-cf-wong%2Fpaperlens/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"},{"uuid":"2526102331","node_id":"PR_kwDOOrqtkM6WkUM7","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-17T13:56:43.000Z","updated_at":"2025-05-17T13:56:44.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/omri123/makedata/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/omri123%2Fmakedata/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"2510748204","node_id":"PR_kwDOOndynM6Vpvos","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-09T23:42:01.000Z","updated_at":"2025-05-09T23:42:01.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thiag0bezerra/python-landlock/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiag0bezerra%2Fpython-landlock/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"2510274548","node_id":"PR_kwDOOnWzfc6Vn7_0","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-09T18:13:19.000Z","updated_at":"2025-05-09T18:13:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/UNFmontreal/faire/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/UNFmontreal%2Ffaire/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}],"issue_packages":[{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-10-01T12:30:32.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2878063876","node_id":"PR_kwDOP6QwVc6ri8UE","number":13,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-10-01T12:30:32.000Z","updated_at":"2025-10-01T12:30:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nicolas-f/demonstrateur_yamnet_jpo/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicolas-f%2Fdemonstrateur_yamnet_jpo/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-09-17T02:32:44.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2834907664","node_id":"PR_kwDOPxWOo86o-UIQ","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-09-17T02:32:44.000Z","updated_at":"2025-09-17T02:32:45.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/sacrosshowe/Sample-Python-Project/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/sacrosshowe%2FSample-Python-Project/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-09-09T16:10:20.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2812555703","node_id":"PR_kwDOPswdcc6npDG3","number":5,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-09-09T16:10:20.000Z","updated_at":"2025-09-09T16:10:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/xmaxrayx/pyhello/pull/5","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/xmaxrayx%2Fpyhello/issues/5","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-08-14T01:20:43.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2744540069","node_id":"PR_kwDOPdnr5M6jllul","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-08-14T01:20:43.000Z","updated_at":"2025-08-14T01:20:43.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kisslim/shogi-designer/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kisslim%2Fshogi-designer/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-07-24T02:25:55.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2690555138","node_id":"PR_kwDOPRxf7c6gXp0C","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-24T02:25:55.000Z","updated_at":"2025-07-24T02:25:56.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":null}],"path":null,"ecosystem":"actions"},"body":"\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/shadowkai0121/proxy_requests/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowkai0121%2Fproxy_requests/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-07-09T15:32:26.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2653273989","node_id":"PR_kwDOPJuU5c6eJb-F","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-09T15:32:26.000Z","updated_at":"2025-07-09T15:32:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jez020/CSVStatistician/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jez020%2FCSVStatistician/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-07-08T21:49:58.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2651081259","node_id":"PR_kwDOPJQ3fc6eBEor","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-07-08T21:49:58.000Z","updated_at":"2025-07-08T21:49:59.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/veiii/tts-server/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/veiii%2Ftts-server/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-06-21T17:38:26.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2609170162","node_id":"PR_kwDOO_k-bM6bhMby","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-06-21T17:38:26.000Z","updated_at":"2025-06-21T17:38:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/xnoodlexboyx/pyPPET/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/xnoodlexboyx%2FpyPPET/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-06-09T03:19:01.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2577244527","node_id":"PR_kwDOO4YnK86ZnaFv","number":8,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-06-09T03:19:01.000Z","updated_at":"2025-06-09T03:19:02.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Tuan2002/mezon-sdk/pull/8","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tuan2002%2Fmezon-sdk/issues/8","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-30T20:34:31.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"1292094150577056556","node_id":"PR_kwDOOzblys6YVBGr","number":4,"state":"closed","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":"2025-06-01T08:56:33.000Z","author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-05-30T20:34:31.000Z","updated_at":"2025-06-10T18:50:33.193Z","time_to_close":130922,"merged_at":"2025-06-01T08:56:33.000Z","merged_by":"andrea-alfonsi","closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/andrea-alfonsi/anemone-backend/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrea-alfonsi%2Fanemone-backend/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-30T20:34:31.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2555646379","node_id":"PR_kwDOOzblys6YVBGr","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-30T20:34:31.000Z","updated_at":"2025-05-30T20:34:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/andrea-alfonsi/anemone/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrea-alfonsi%2Fanemone/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-25T09:05:44.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2542311768","node_id":"PR_kwDOOwH_ms6XiJlY","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-25T09:05:44.000Z","updated_at":"2025-05-25T09:05:44.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/isaac-cf-wong/calsync/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaac-cf-wong%2Fcalsync/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-23T13:55:40.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2539951020","node_id":"PR_kwDOOvPq3s6XZJOs","number":3,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-23T13:55:40.000Z","updated_at":"2025-05-23T13:55:41.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/TheCuddlyBear/ChildesLib/pull/3","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCuddlyBear%2FChildesLib/issues/3","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-22T23:46:49.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2538466035","node_id":"PR_kwDOOu44Tc6XTerz","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-22T23:46:49.000Z","updated_at":"2025-05-22T23:46:50.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/bohong/python-project-template/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohong%2Fpython-project-template/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-22T09:23:47.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2536575716","node_id":"PR_kwDOOueJKs6XMRLk","number":1,"state":"closed","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":"2025-05-22T10:38:37.000Z","author_association":"NONE","state_reason":null,"created_at":"2025-05-22T09:23:47.000Z","updated_at":"2025-05-22T10:38:37.000Z","time_to_close":4490,"merged_at":"2025-05-22T10:38:37.000Z","merged_by":"isaac-cf-wong","closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/isaac-cf-wong/paperlens/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaac-cf-wong%2Fpaperlens/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-17T13:56:43.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2526102331","node_id":"PR_kwDOOrqtkM6WkUM7","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-17T13:56:43.000Z","updated_at":"2025-05-17T13:56:44.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/omri123/makedata/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/omri123%2Fmakedata/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-09T23:42:01.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2510748204","node_id":"PR_kwDOOndynM6Vpvos","number":4,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-09T23:42:01.000Z","updated_at":"2025-05-09T23:42:01.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thiag0bezerra/python-landlock/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiag0bezerra%2Fpython-landlock/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.6.4","new_version":"0.7.3","update_type":"minor","path":null,"pr_created_at":"2025-05-09T18:13:19.000Z","version_change":"0.6.4 → 0.7.3","issue":{"uuid":"2510274548","node_id":"PR_kwDOOnWzfc6Vn7_0","number":1,"state":"open","title":"fix: bump microsoft/action-python from 0.6.4 to 0.7.3","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-05-09T18:13:19.000Z","updated_at":"2025-05-09T18:13:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix","packages":[{"name":"microsoft/action-python","old_version":"0.6.4","new_version":"0.7.3","repository_url":"https://github.com/microsoft/action-python"}],"path":null,"ecosystem":"actions"},"body":"Bumps [microsoft/action-python](https://github.com/microsoft/action-python) from 0.6.4 to 0.7.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/action-python/releases\"\u003emicrosoft/action-python's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.7.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/35\"\u003emicrosoft/action-python#35\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/34\"\u003emicrosoft/action-python#34\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.7 to 1.5.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/33\"\u003emicrosoft/action-python#33\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.7.1 to 0.7.2 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/29\"\u003emicrosoft/action-python#29\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.2...0.7.3\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.2...0.7.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump Azure/login from 1.4.6 to 1.4.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/24\"\u003emicrosoft/action-python#24\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.6.4 to 0.7.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/26\"\u003emicrosoft/action-python#26\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/checkout from 2 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/27\"\u003emicrosoft/action-python#27\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/22\"\u003emicrosoft/action-python#22\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/19\"\u003emicrosoft/action-python#19\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.1...0.7.2\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.1...0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding Microsoft SECURITY.MD by \u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Install deps for Pylint by \u003ca href=\"https://github.com/dciborow\"\u003e\u003ccode\u003e@​dciborow\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/25\"\u003emicrosoft/action-python#25\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft-github-policy-service\"\u003e\u003ccode\u003e@​microsoft-github-policy-service\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/23\"\u003emicrosoft/action-python#23\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.7.0...0.7.1\"\u003ehttps://github.com/microsoft/action-python/compare/0.7.0...0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003e0.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: bump peter-evans/create-pull-request from 3 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump mathieudutour/github-tag-action from 6.0 to 6.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/14\"\u003emicrosoft/action-python#14\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump actions/setup-python from 1 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/15\"\u003emicrosoft/action-python#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump dciborow/action-pylint from 0.0.4 to 0.1.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/17\"\u003emicrosoft/action-python#17\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: bump microsoft/action-python from 0.3.15 to 0.6.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/16\"\u003emicrosoft/action-python#16\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/microsoft/action-python/pull/13\"\u003emicrosoft/action-python#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.0\"\u003ehttps://github.com/microsoft/action-python/compare/0.6.4...0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00afd9876614ecf1b756489fdc3b604e92dee27d\"\u003e\u003ccode\u003e00afd98\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.7.1 to 0.7.2 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/29\"\u003e#29\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/df5a4b708737741eb3f2b48b852a58789fabea59\"\u003e\u003ccode\u003edf5a4b7\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.7 to 1.5.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/33\"\u003e#33\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/3b813869f880db8df7e0936275810a1e6624237e\"\u003e\u003ccode\u003e3b81386\u003c/code\u003e\u003c/a\u003e fix: bump actions/setup-python from 4 to 5 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/34\"\u003e#34\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/d9e9606b19667432784b869dfbb7b119d87a0cdc\"\u003e\u003ccode\u003ed9e9606\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.6.0 to 1.8.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/35\"\u003e#35\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/c8ec939994d7ed2ec77b7bbe59ed5f5b72fb5607\"\u003e\u003ccode\u003ec8ec939\u003c/code\u003e\u003c/a\u003e fix: bump dciborow/action-pylint from 0.1.0 to 0.1.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/19\"\u003e#19\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/546ed73d500d79e2fcb9756df40d0260a2d65791\"\u003e\u003ccode\u003e546ed73\u003c/code\u003e\u003c/a\u003e fix: bump jakebailey/pyright-action from 1.1.0 to 1.6.0 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/22\"\u003e#22\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/8b31fb36beb8fa9d0965c1135b847791d013c5ed\"\u003e\u003ccode\u003e8b31fb3\u003c/code\u003e\u003c/a\u003e fix: bump actions/checkout from 2 to 4 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/27\"\u003e#27\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/69161852a92a1facc0b8ad4c825cb99883f1b37d\"\u003e\u003ccode\u003e6916185\u003c/code\u003e\u003c/a\u003e fix: bump microsoft/action-python from 0.6.4 to 0.7.1 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/26\"\u003e#26\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/e47db045abb165c6de720f6b5fed168c3cfcad68\"\u003e\u003ccode\u003ee47db04\u003c/code\u003e\u003c/a\u003e fix: bump Azure/login from 1.4.6 to 1.4.7 (\u003ca href=\"https://redirect.github.com/microsoft/action-python/issues/24\"\u003e#24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/action-python/commit/00a1b4b98b48da3404eee8440de577dfc89fcb86\"\u003e\u003ccode\u003e00a1b4b\u003c/code\u003e\u003c/a\u003e Update action.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/action-python/compare/0.6.4...0.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=microsoft/action-python\u0026package-manager=github_actions\u0026previous-version=0.6.4\u0026new-version=0.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/UNFmontreal/faire/pull/1","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/UNFmontreal%2Ffaire/issues/1","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1/packages"}}]}