diff --git a/tests/test_repo_readiness.py b/tests/test_repo_readiness.py index 4c80182..9c6e495 100644 --- a/tests/test_repo_readiness.py +++ b/tests/test_repo_readiness.py @@ -27,8 +27,8 @@ def test_ci_runs_standalone_dummy_generation_workflow(self): for python_version in ('"3.10"', '"3.11"', '"3.12"'): with self.subTest(python_version=python_version): self.assertIn(python_version, workflow) - self.assertIn("actions/checkout@v4", workflow) - self.assertIn("actions/setup-python@v5", workflow) + self.assertIn("actions/checkout@v7.0.1", workflow) + self.assertIn("actions/setup-python@v7.0.0", workflow) self.assertIn("python-version: ${{ matrix.python-version }}", workflow) self.assertIn("python -m pip install -e .", workflow) self.assertIn("python-from-jse-generate --help", workflow)