From fa2ac02011b348358dc126830053ff4feaab0edb Mon Sep 17 00:00:00 2001 From: petarTxFusion Date: Wed, 28 Feb 2024 12:53:06 +0100 Subject: [PATCH 1/2] ci: bump actions version --- .github/workflows/publish.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- .github/workflows/test.yml | 2 +- .github/workflows/validate.yml | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e41cfad..4ddc2df 100755 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -11,7 +11,7 @@ jobs: name: Build distribution of library runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3 uses: actions/setup-python@v4 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ac3489f..e2d497a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,11 +15,11 @@ jobs: pull-requests: write # to be able to comment on released pull requests steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*" - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 825d7f4..c7fe64c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python 3 diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 05e83d0..b0aba04 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python 3 @@ -31,9 +31,9 @@ jobs: if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*" - name: Install dependencies @@ -54,9 +54,9 @@ jobs: if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*" - name: Install dependencies From db33c6abf813a0aa417980a32d0337ea83e3197d Mon Sep 17 00:00:00 2001 From: petarTxFusion Date: Wed, 28 Feb 2024 12:54:01 +0100 Subject: [PATCH 2/2] ci: fix validate pipeline --- .github/workflows/validate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b0aba04..da50363 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -37,7 +37,7 @@ jobs: with: node-version: "lts/*" - name: Install dependencies - run: npm install -g @commitlint/cli @commitlint/config-conventional + run: npm install -g @commitlint/cli@18.6.1 @commitlint/config-conventional@18.6.2 - name: Configure run: | echo 'module.exports = {"extends": ["@commitlint/config-conventional"]}' > commitlint.config.js @@ -60,7 +60,7 @@ jobs: with: node-version: "lts/*" - name: Install dependencies - run: npm install -g @commitlint/cli @commitlint/config-conventional + run: npm install -g @commitlint/cli@18.6.1 @commitlint/config-conventional@18.6.2 - name: Configure run: | echo 'module.exports = {"extends": ["@commitlint/config-conventional"]}' > commitlint.config.js