From 4d4c0fdc309d68f7dc2ef0cf9c6f93d960e27ea0 Mon Sep 17 00:00:00 2001 From: Ajesh Sen Thapa Date: Mon, 29 Jan 2024 19:16:14 +0545 Subject: [PATCH] ci: upgraded action packages - Removed node16 actions packages - Updated README.md documentation for Github actions support - Minor update on Github actions --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/test_action.yaml | 6 +++--- README.md | 6 +++--- action.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) 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"