diff --git a/.github/workflows/actions-publish.yml b/.github/workflows/actions-publish.yml index bdfd502..86c4465 100644 --- a/.github/workflows/actions-publish.yml +++ b/.github/workflows/actions-publish.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '14.19.3' registry-url: 'https://registry.npmjs.org' @@ -27,7 +27,7 @@ jobs: - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/actions-test.yml b/.github/workflows/actions-test.yml index 93bc020..52a8450 100644 --- a/.github/workflows/actions-test.yml +++ b/.github/workflows/actions-test.yml @@ -7,10 +7,10 @@ jobs: image: node:14.19.3 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}