Skip to content

Commit

Permalink
Merge pull request #18 from k2bd/update-2023
Browse files Browse the repository at this point in the history
Update for 2023
  • Loading branch information
k2bd committed Nov 30, 2023
2 parents b3832f8 + 60b6983 commit 479d9a9
Show file tree
Hide file tree
Showing 5 changed files with 377 additions and 371 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

runs-on: ${{ matrix.os }}

Expand All @@ -18,7 +18,7 @@ jobs:
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.2.2
poetry-version: 1.5.1
- name: Install project
run: poetry install
- name: Lint
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-local.yml
Expand Up @@ -5,15 +5,17 @@ on:
jobs:
update-readme:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
with:
userId: 1511815
sessionCookie: ${{ secrets.AOC_SESSION }}
headerPrefix: "###"
tableMarker: "<!--- advent_readme_stars table example --->"
year: 2022
- uses: stefanzweifel/git-auto-commit-action@v4
year: 2023
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update README stars
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -40,14 +40,16 @@ on:
jobs:
update-readme:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: k2bd/advent-readme-stars@v1
with:
userId: 1234567
leaderboardId: 9876543
sessionCookie: ${{ secrets.AOC_SESSION }}
- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5 # use v5
with:
commit_message: Update README stars
```
Expand Down

0 comments on commit 479d9a9

Please sign in to comment.