Skip to content

Commit

Permalink
Merge pull request #19 from aj3sh/actions-node20-updates
Browse files Browse the repository at this point in the history
ci: upgraded action packages
  • Loading branch information
sugat009 authored Jan 29, 2024
2 parents 5b1bef1 + 4d4c0fd commit 312aadb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
jobs:
commitlint:
runs-on: ubuntu-latest
name: Check commit messages
name: Commitlint
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Run commitlint
uses: ./ # Uses an action in the root directory
# or use a released GitHub Action
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ on:
jobs:
commitlint:
runs-on: ubuntu-latest
name: Check commit messages
name: Commitlint
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Run commitlint
uses: opensource-nepal/[email protected]
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: "composite"
steps:
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"

Expand Down

0 comments on commit 312aadb

Please sign in to comment.