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..da50363 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,13 +31,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 @@ -54,13 +54,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