diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44f1527..b5cda17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,9 @@ jobs: build-pr: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x cache: "npm" @@ -31,9 +31,9 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x cache: "npm" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f19d04a..c0ac1ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,14 +22,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get Release Version id: getReleaseVersion run: echo ::set-output name=tag::${GITHUB_REF#refs/*/v} - name: Use Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x registry-url: https://registry.npmjs.org/ @@ -61,7 +61,7 @@ jobs: needs: build steps: - name: Use Node.js 18.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x registry-url: https://registry.npmjs.org/ @@ -83,7 +83,7 @@ jobs: needs: publish-package steps: ## Checkout so we can apply the new tag - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: '0'