Compare commits

..

14 commits

Author SHA1 Message Date
46ccfb045a
chore(deps): pin dependencies
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 1m8s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 1m23s
2025-03-27 19:04:10 +00:00
0503f3b78d
feat(backup): update to most recent red version
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 30s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 36s
2025-03-22 09:16:34 -04:00
4f01814896
fix(actions): switch back to local mirrored actions
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 33s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 37s
2025-03-19 15:37:53 -04:00
4661555aa6
fix(actions): use full urls for actions
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 40s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 43s
2025-03-19 13:57:15 -04:00
3e345cc3af
fix(actions): change actions urls
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 40s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 46s
2025-03-19 08:19:05 -04:00
4844f5892c
fix(actions): change the meli url
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 29s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 36s
2025-03-19 08:05:09 -04:00
1d502bbbe8
fix(actions): use the full github url
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 59s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 48s
2025-03-18 03:58:47 -05:00
8c4afd87c9
Revert "fix(actions): don't use uv run"
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 50s
Actions / Build Documentation (MkDocs) (push) Failing after 59s
This reverts commit 091a23d610.
2025-03-18 03:57:07 -05:00
091a23d610
fix(actions): don't use uv run
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 31s
Actions / Build Documentation (MkDocs) (push) Failing after 37s
`setup-uv` should be activating the virtual environment anyway, this is
unnecessary
2025-03-18 03:55:14 -05:00
d00776c006
fix(actions): don't prune the uv cachce
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 52s
Actions / Build Documentation (MkDocs) (push) Failing after 58s
2025-03-18 03:47:03 -05:00
a19761b720
fix(actions): use a github token to prevent ratelimiting
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 52s
Actions / Build Documentation (MkDocs) (push) Failing after 1m1s
2025-03-18 03:42:37 -05:00
6354559d3a
fix(actions): install the right dependencies
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 7s
Actions / Build Documentation (MkDocs) (push) Failing after 7s
2025-03-18 03:24:48 -05:00
fd409d450f
fix(actions): install dependencies in a separate step
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 50s
Actions / Build Documentation (MkDocs) (push) Failing after 47s
2025-03-18 03:20:08 -05:00
6cd44c1fc7
fix(actions): fix actions workflow & use the uv action to setup uv 2025-03-18 03:20:03 -05:00
2 changed files with 12 additions and 8 deletions

View file

@ -9,16 +9,18 @@ jobs:
lint:
name: Lint Code (Ruff & Pylint)
runs-on: docker
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
container: catthehacker/ubuntu:act-latest@sha256:70d7485966a50a639ddab37445fd27c2f0b5086ad4959ec3bba228ed394c1928
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: "Setup uv"
uses: https://github.com/astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5
uses: actions/setup-uv@22695119d769bdb6f7032ad67b9bca0ef8c4a174 # v5
with:
version: "latest"
enable-cache: true
prune-cache: false
github-token: ${{ secrets.GITHUBTOKEN }}
- name: "Install dependencies"
run: uv sync
@ -33,7 +35,7 @@ jobs:
docs:
name: Build Documentation (MkDocs)
runs-on: docker
container: catthehacker/ubuntu:act-latest@sha256:afbd9338d5d5c55290846befd921cbaabed061a7efc30a2d25d4c1f097f832f9
container: catthehacker/ubuntu:act-latest@sha256:70d7485966a50a639ddab37445fd27c2f0b5086ad4959ec3bba228ed394c1928
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@ -41,16 +43,18 @@ jobs:
fetch-depth: 0
- name: "Setup uv"
uses: https://github.com/astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5
uses: actions/setup-uv@22695119d769bdb6f7032ad67b9bca0ef8c4a174 # v5
with:
version: "latest"
enable-cache: true
prune-cache: false
github-token: ${{ secrets.GITHUBTOKEN }}
- name: Install dependencies
run: uv sync --no-dev --extra=documentation
run: uv sync --no-dev --group=documentation
- name: Set environment variables
uses: actions/env@v2
uses: actions/env@1791216cd180e6578dd1d67fb8d2852b883a5f53 # v2
- name: Build documentation
run: |
@ -70,7 +74,7 @@ jobs:
echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$CI_ACTION_REF_NAME_SLUG${YELLOW}...\n"
npx -p "@getmeli/cli" meli upload ./site \
--url "https://pages.coastalcommits.com" \
--url "https://meli.csw.im" \
--site "${{ vars.MELI_SITE_ID }}" \
--token "${{ secrets.MELI_TOKEN }}" \
--release "$CI_ACTION_REF_NAME_SLUG/${{ env.GITHUB_SHA }}" \

View file

@ -11,7 +11,7 @@
"hidden": false,
"disabled": false,
"min_bot_version": "3.5.6",
"max_bot_version": "3.5.16",
"max_bot_version": "3.5.17",
"min_python_version": [
3,
9,