Skip to content

Commit

Permalink
Update blog posts for 2024-11-29T00:57:15Z
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 29, 2024
1 parent 40c3a21 commit 615cd5c
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 0 deletions.
69 changes: 69 additions & 0 deletions content/posts/2024/11/29-00-astral-sh-setup-uv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
title: astral-sh/setup-uv
date: 2024-11-29 00:57:13 +00:00
tags:
- astral-sh
- GitHub Actions
draft: false
repo: astral-sh/setup-uv
marketplace: https://github.com/marketplace/actions/astral-sh-setup-uv
version: v4.1.0
dependentsNumber: "4,589"
---


Version updated for **astral-sh/setup-uv** to version **v4.1.0**.
- This publisher is shown as 'verified' by GitHub.
- This action is used across all versions by **4,589** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/astral-sh-setup-uv) to find the latest changes.

## Release notes

## Changes

You can now use the input `python-version` to set the environment variable `UV_PYTHON` for the rest of your workflow.
This will override any python version specifications in `pyproject.toml` and `.python-version`

```yaml
- name: Install the latest version of uv and set the python version to 3.12
uses: astral-sh/setup-uv@v4
with:
python-version: "3.12"
```
You can combine this with a matrix to test multiple python versions:
```yaml
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest
```
## 🚀 Enhancements
- Add input python-version @eifinger (#174)
## 🧰 Maintenance
- Reduce test matrices @eifinger (#173)
- chore: update known checksums for 0.5.5 @github-actions (#170)
- Speed up updating known checksums @eifinger (#166)
## 📚 Documentation
- Replace v3 with v4 in README.md @eifinger (#176)
- Add matrix example for python-version @eifinger (#175)
- Clarify caching will only fail when enabled and nothing to cache @eifinger (#165)
31 changes: 31 additions & 0 deletions content/posts/2024/11/29-00-bcomnes-deploy-to-neocities.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Deploy to Neocities
date: 2024-11-29 00:57:10 +00:00
tags:
- bcomnes
- GitHub Actions
draft: false
repo: bcomnes/deploy-to-neocities
marketplace: https://github.com/marketplace/actions/deploy-to-neocities
version: v3.0.1
dependentsNumber: "766"
---


Version updated for **bcomnes/deploy-to-neocities** to version **v3.0.1**.
- This action is used across all versions by **766** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/deploy-to-neocities) to find the latest changes.

## Release notes

### Merged

- chore(deps): bump async-neocities from 4.0.3 to 4.0.4 [`#209`](https://github.com/bcomnes/deploy-to-neocities/pull/209)
- fixed a typo in README.md [`#208`](https://github.com/bcomnes/deploy-to-neocities/pull/208)
- chore(deps-dev): bump typescript from 5.6.3 to 5.7.2 [`#207`](https://github.com/bcomnes/deploy-to-neocities/pull/207)
- Add my website https://jefbecker.com/ to the list. [`#206`](https://github.com/bcomnes/deploy-to-neocities/pull/206)

### Commits

- Update README.md [`15eb88d`](https://github.com/bcomnes/deploy-to-neocities/commit/15eb88d4831e8b3170195c1e2b468e8ab3a9703d)
28 changes: 28 additions & 0 deletions content/posts/2024/11/29-00-orhun-git-cliff-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: git-cliff - Changelog Generator
date: 2024-11-29 00:57:08 +00:00
tags:
- orhun
- GitHub Actions
draft: false
repo: orhun/git-cliff-action
marketplace: https://github.com/marketplace/actions/git-cliff-changelog-generator
version: v4.4.1
dependentsNumber: "2,658"
---


Version updated for **orhun/git-cliff-action** to version **v4.4.1**.
- This action is used across all versions by **2,658** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/git-cliff-changelog-generator) to find the latest changes.

## Release notes

## [4.4.1] - 2024-11-28

### 🐛 Bug Fixes

- *(install)* Choose file extension based upon running OS (#41)


0 comments on commit 615cd5c

Please sign in to comment.