diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4d31c5e..a76b295 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 }} @@ -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' diff --git a/.github/workflows/test_action.yaml b/.github/workflows/test_action.yaml index 8b9d252..0378a6c 100644 --- a/.github/workflows/test_action.yaml +++ b/.github/workflows/test_action.yaml @@ -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 diff --git a/README.md b/README.md index 3d3afb8..c2bdf99 100644 --- a/README.md +++ b/README.md @@ -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/commitlint@0.1.0 ``` diff --git a/action.yml b/action.yml index a47ee32..8b641bf 100644 --- a/action.yml +++ b/action.yml @@ -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"