diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 87721db..7f70976 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Use Node.js - uses: actions/setup-node@v4.1.1 + uses: actions/setup-node@v4 with: node-version: "20.x" cache: 'npm' @@ -45,7 +45,7 @@ jobs: - name: Login to Docker Hub # uses: docker/login-action@v3 - uses: actions/login-action@v1 + uses: actions/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} @@ -58,7 +58,7 @@ jobs: - name: Docker build and push # use: docker/build-push-action@v5 - uses: actions/build-push-action@v5 + uses: actions/build-push-action@v6 with: push: true file: deploy/docker/Dockerfile @@ -69,7 +69,7 @@ jobs: - name: Set up kubeconfig # uses: azure/k8s-set-context@v3 - uses: actions/k8s-set-context@v3 + uses: actions/k8s-set-context@4 with: method: kubeconfig kubeconfig: ${{ secrets.KUBE_CONFIG }} @@ -77,7 +77,7 @@ jobs: - name: Set up Helm # uses: azure/setup-helm@v3 - uses: actions/setup-helm@v3.6 + uses: actions/setup-helm@v4 with: version: 'v3.13.1' # default is latest (stable)