Skip to content

Commit

Permalink
Update default Python version to 3.12 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored Apr 29, 2024
1 parent 89f2ff5 commit f7adb5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ This GitHub Action encapsulates common steps that are executed in GitHub Action

```
- id: ghga-common
uses: ghga-de/gh-action-common@v5
uses: ghga-de/gh-action-common@v6
with:
python-version: '3.12'
```

If the `with` block is omitted, the default Python version for the GHGA repositories will be used, which is currently Python 3.9.
If the `with` block is omitted, the default Python version for the GHGA repositories will be used, which is currently Python 3.12.

## Output

Expand All @@ -26,6 +26,10 @@ The action outputs the following values:

## Changelog

### v6

Use Python 3.12 instead of Python 3.9 as the default version.

### v5

Allows specifying the Python version in the `with` block.
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ inputs:
python-version:
description: 'The Python version to use'
required: false
default: '3.9'
default: '3.12'

outputs:
PACKAGE_NAME:
Expand Down

0 comments on commit f7adb5d

Please sign in to comment.