diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cca040d..fdd183c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 014023e..602eed7 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: Install Go diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 44c36b8..6383cc9 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: Install Go @@ -26,13 +26,13 @@ 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 - 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 @@ -49,13 +49,13 @@ 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 - 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