diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index f351fb6..edbddca 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -14,8 +14,8 @@ jobs: container: image: node:20-alpine steps: - - uses: actions/checkout@v3 - + - name: Git Clone + uses: actions/checkout@v4 - name: Restore Node Modules Cache uses: actions/cache@v3 with: @@ -45,7 +45,8 @@ jobs: image: node:20-alpine if: github.ref == 'refs/heads/development' || startsWith(github.ref, 'refs/heads/release-no-verify/') steps: - - uses: actions/checkout@v3 + - name: Git Clone + uses: actions/checkout@v4 - name: Restore dist/ run: cp -r /tmp/artifacts/dist ./ @@ -65,7 +66,8 @@ jobs: image: node:20-alpine if: github.ref == 'refs/heads/development' || startsWith(github.ref, 'refs/heads/release-no-verify/') steps: - - uses: actions/checkout@v3 + - name: Git Clone + uses: actions/checkout@v4 - name: Publish to NPM (staging) run: | cd dist @@ -81,7 +83,8 @@ jobs: image: node:20-alpine if: github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v3 + - name: Git Clone + uses: actions/checkout@v4 - name: Prepare Production Package run: |