Skip to content

Commit 8636f21

Browse files
committed
update tag
1 parent 00921fe commit 8636f21

2 files changed

Lines changed: 12 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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 🔍
@@ -44,7 +44,7 @@ jobs:
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
@@ -68,7 +68,7 @@ jobs:
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
284284
This 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

USAGE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Add this step to your workflow:
66

77
```yaml
88
- name: Setup Spoo.me Service
9-
uses: spoo-me/setup-action@v1
9+
uses: spoo-me/setup-action@v2
1010
id: spoo
1111
```
1212
1313
## With Custom Configuration
1414
1515
```yaml
1616
- name: Setup Spoo.me Service
17-
uses: spoo-me/setup-action@v1
17+
uses: spoo-me/setup-action@v2
1818
id: spoo
1919
with:
2020
python-version: '3.13'
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v4
5050

5151
- name: Setup Spoo.me
52-
uses: spoo-me/setup-action@v1
52+
uses: spoo-me/setup-action@v2
5353
id: spoo
5454

5555
- name: Verify health

0 commit comments

Comments
 (0)