diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 0f2dff9..9b502c1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -12,9 +12,9 @@ jobs: node-version: [16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -33,7 +33,7 @@ jobs: run: npm run build - name: Stash dist - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v4 with: name: dist ${{matrix.node-version}} path: dist/ @@ -48,9 +48,9 @@ jobs: node-version: [16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -79,9 +79,9 @@ jobs: if: github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js 20.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 20.x registry-url: 'https://registry.npmjs.org'