From a74db4e8bc3a2bf874561db44078486e0545e8f1 Mon Sep 17 00:00:00 2001 From: Gulfaraz Rahman Date: Fri, 19 Jul 2024 16:47:27 +0200 Subject: [PATCH 1/2] ci: remove unused config --- .github/workflows/workflow.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index fcb411516..bbad63fe9 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -3,9 +3,6 @@ name: 'Continuous Integration for IBF' on: push: branches: [master] - paths-ignore: - - './package.json' - - './COMMITLOG.md' pull_request: branches: [master] From 2037cc102fdb5b45c9355d59b1e9996d03fb8b24 Mon Sep 17 00:00:00 2001 From: Gulfaraz Rahman Date: Fri, 19 Jul 2024 16:47:47 +0200 Subject: [PATCH 2/2] ci: upgrade github action versions --- .github/workflows/workflow.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index bbad63fe9..d4618b4be 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,8 +15,8 @@ jobs: ibf-dashboard: ${{ steps.filter.outputs.ibf-dashboard }} steps: - - uses: actions/checkout@v3 - - uses: dorny/paths-filter@v2 + - uses: actions/checkout@v4 + - uses: dorny/paths-filter@v3 id: filter with: filters: | @@ -44,9 +44,9 @@ jobs: working-directory: 'services/API-service' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3.4.1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci --no-audit @@ -70,9 +70,9 @@ jobs: working-directory: 'interfaces/IBF-dashboard' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3.4.1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci --no-audit @@ -90,16 +90,16 @@ jobs: steps: - name: Wait for previous workflow to complete - uses: softprops/turnstyle@v1 + uses: softprops/turnstyle@v2 with: abort-after-seconds: 1800 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Bump version and push tag - uses: TriPSs/conventional-changelog-action@v3 + uses: TriPSs/conventional-changelog-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} git-message: 'chore(release): {version}'