@@ -22,7 +22,7 @@ A reusable GitHub Action that automatically sets up the [spoo.me URL shortener s
2222
2323# 🔥 Features
2424
25- - ` Reusable ` - Use in any repository with ` uses: spoo-me/setup-action@v1 ` 🔄
25+ - ` Reusable ` - Use in any repository with ` uses: spoo-me/setup-action@v2 ` 🔄
2626- ` Complete Environment ` - Automatically installs and configures Python, MongoDB, and Redis ⚡
2727- ` FastAPI + Uvicorn ` - Starts the service with uvicorn for production-grade performance 🚀
2828- ` Health Monitoring ` - Verifies all services via the ` /health ` endpoint before proceeding 🔍
4444 runs-on : ubuntu-latest
4545 steps :
4646 - name : Setup Spoo.me Service
47- uses : spoo-me/setup-action@v1
47+ uses : spoo-me/setup-action@v2
4848 id : spoo-setup
4949
5050 - name : Run tests against Spoo.me
6868 uses : actions/checkout@v4
6969
7070 - name : Setup Spoo.me Service
71- uses : spoo-me/setup-action@v1
71+ uses : spoo-me/setup-action@v2
7272 id : spoo-setup
7373 with :
7474 python-version : ' 3.13'
@@ -168,7 +168,7 @@ jobs:
168168 - uses: actions/checkout@v4
169169
170170 - name: Setup Spoo.me
171- uses: spoo-me/setup-action@v1
171+ uses: spoo-me/setup-action@v2
172172 id: spoo
173173
174174 - name: Run integration tests
@@ -200,7 +200,7 @@ jobs:
200200 - uses: actions/checkout@v4
201201
202202 - name: Setup Spoo.me
203- uses: spoo-me/setup-action@v1
203+ uses: spoo-me/setup-action@v2
204204 with:
205205 python-version: ${{ matrix.python-version }}
206206 mongodb-version: ${{ matrix.mongodb-version }}
@@ -220,7 +220,7 @@ jobs:
220220 - uses: actions/checkout@v4
221221
222222 - name: Setup Spoo.me
223- uses: spoo-me/setup-action@v1
223+ uses: spoo-me/setup-action@v2
224224 with:
225225 wait-timeout: '300'
226226 id: spoo
@@ -283,8 +283,9 @@ setup-action/
283283
284284This action follows semantic versioning. Available versions:
285285
286- - `@v1` - Latest stable v1.x release (recommended)
287- - `@v1.0.0` - Specific version
286+ - `@v2` - Latest stable v2.x release (recommended)
287+ - `@v2.0.0` - Specific version
288+ - `@v1` - Legacy (Flask-based spoo.me)
288289- `@main` - Latest development version (not recommended for production)
289290
290291# 🤝 Contributing
0 commit comments