From 92ac96c12e4023eef68fc30bbcb942750172433c Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti <13schishti@gmail.com> Date: Sun, 25 Jan 2026 00:34:40 +0000 Subject: [PATCH 1/2] Upgrade GitHub Actions to latest versions Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com> --- .github/workflows/credits.yml | 2 +- .github/workflows/deploy-aws.yml | 4 ++-- .github/workflows/docker.yml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/credits.yml b/.github/workflows/credits.yml index 0056930a..03f002e9 100644 --- a/.github/workflows/credits.yml +++ b/.github/workflows/credits.yml @@ -25,7 +25,7 @@ jobs: name: Inserts Contributors 💓 steps: - name: Updates readme with contributors - uses: akhilmhdh/contributors-readme-action@v2.3.10 + uses: akhilmhdh/contributors-readme-action@v2.3.11 env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN || secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/deploy-aws.yml b/.github/workflows/deploy-aws.yml index 971858a8..722a476d 100644 --- a/.github/workflows/deploy-aws.yml +++ b/.github/workflows/deploy-aws.yml @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-yarn- - name: Create GitHub deployment for API - uses: chrnorm/deployment-action@releases/v2 + uses: chrnorm/deployment-action@v2 id: deployment_api with: token: ${{ secrets.BOT_TOKEN || secrets.GITHUB_TOKEN }} @@ -97,7 +97,7 @@ jobs: yarn build - name: Setup AWS - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 53dcead8..f65e10e5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -42,27 +42,27 @@ jobs: fi - name: Set up QEMU 🐧 - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx 🐳 - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Login to GitHub Container Registry 🔑 - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ${{ env.GHCR_REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to DockerHub 🔑 - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ${{ env.DOCKERHUB_REGISTRY }} username: ${{ env.DOCKER_USER }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Build and push Docker images 🛠️ - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile From c42c629bae2c0d5c325936abb981d0d7857afeb3 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Tue, 24 Feb 2026 21:33:46 +0000 Subject: [PATCH 2/2] Update deployment action to use release version --- .github/workflows/deploy-aws.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-aws.yml b/.github/workflows/deploy-aws.yml index 722a476d..e27e6b6a 100644 --- a/.github/workflows/deploy-aws.yml +++ b/.github/workflows/deploy-aws.yml @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-yarn- - name: Create GitHub deployment for API - uses: chrnorm/deployment-action@v2 + uses: chrnorm/deployment-action@releases/v2 id: deployment_api with: token: ${{ secrets.BOT_TOKEN || secrets.GITHUB_TOKEN }}