Skip to content

Commit

Permalink
Update github action hooks (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasium authored Oct 9, 2024
1 parent 8ce412b commit 822a90d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
ci-pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install project
Expand All @@ -29,10 +29,10 @@ jobs:
invoke-version: ["2.0.*", "2.*"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install project
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install project
Expand All @@ -36,7 +36,7 @@ jobs:
version="${tag:1}"
echo "RELEASE_VERSION=${version}" >> $GITHUB_ENV
- name: Release on GitHub
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: dist/*
name: Version ${{ env.RELEASE_VERSION }}

0 comments on commit 822a90d

Please sign in to comment.