Skip to content

Commit

Permalink
Merge pull request #62 from ulgens/update_actions
Browse files Browse the repository at this point in the history
Update GitHub actions dependencies
  • Loading branch information
espdev authored Jul 29, 2024
2 parents 3523e28 + b843696 commit b3f443e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: softprops/action-gh-release@v1
- uses: actions/checkout@v4
- uses: softprops/action-gh-release@v2
with:
name: click-option-group ${{ github.ref_name }}
prerelease: ${{ contains(github.ref, 'rc') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/step_build-wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Build package
run: pipx run build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*
if: ${{ inputs.upload }}
10 changes: 5 additions & 5 deletions .github/workflows/step_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: pre-commit/[email protected].0
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected].1

checks:
name: Check with Python ${{ matrix.python-version }} ${{ matrix.experimental && '(Experimental)' }}
Expand All @@ -26,8 +26,8 @@ jobs:
- python-version: "3.13"
experimental: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down

0 comments on commit b3f443e

Please sign in to comment.