diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c823fceb7..862c7b58d 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -31,11 +31,11 @@ jobs: changelog: ${{ steps.github_tag_action.outputs.changelog }} steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4.1.6 - name: Bump version and push tag id: github_tag_action - uses: mathieudutour/github-tag-action@v4.5 + uses: mathieudutour/github-tag-action@v6.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} release_branches: main @@ -47,12 +47,12 @@ jobs: if: ${{ needs.bump_version.outputs.new_tag != null }} steps: - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 + uses: actions/checkout@v4.1.6 with: submodules: recursive - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v4.0.2 with: node-version: '16.17.1' @@ -60,7 +60,7 @@ jobs: run: npm install --global yarn - name: Cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v4.0.2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} @@ -77,7 +77,7 @@ jobs: yarn run build - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@4.1.0 + uses: JamesIves/github-pages-deploy-action@v4.6.1 with: branch: gh-pages # The branch the action should deploy to. folder: build # The folder the action should deploy.