Skip to content

Commit b304c14

Browse files
committed
fix: use current GitHub Actions runtimes
1 parent dcd0922 commit b304c14

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/publish-mcp-server.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626

2727
steps:
2828
- uses: actions/checkout@v7
29-
with:
30-
persist-credentials: false
3129

3230
- uses: actions/setup-python@v6
3331
with:
@@ -113,8 +111,6 @@ jobs:
113111

114112
steps:
115113
- uses: actions/checkout@v7
116-
with:
117-
persist-credentials: false
118114

119115
- name: Read server version
120116
id: metadata

examples/mcp_server/test_registry_metadata.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ def test_release_workflow_is_versioned_and_oidc_authenticated(self):
9595
self.assertIn("docker/build-push-action@v7", workflow)
9696
self.assertIn("docker/setup-buildx-action@v4", workflow)
9797
self.assertIn("docker/login-action@v4", workflow)
98-
self.assertEqual(workflow.count("persist-credentials: false"), 2)
98+
self.assertNotIn("actions/checkout@v4", workflow)
99+
self.assertNotIn("actions/setup-python@v5", workflow)
100+
self.assertNotIn("docker/build-push-action@v6", workflow)
101+
self.assertNotIn("docker/setup-buildx-action@v3", workflow)
99102

100103

101104
class MCPContainerSmokeContractTest(unittest.TestCase):

0 commit comments

Comments
 (0)