From d8c190eab522079c61b1ce9cb90c616df9ba80f4 Mon Sep 17 00:00:00 2001 From: kristianmills Date: Fri, 20 Mar 2026 13:19:11 -0700 Subject: [PATCH 1/2] chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 6c5c2d9..b54bbb7 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -21,7 +21,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Run test run: make test @@ -45,7 +45,7 @@ jobs: password: ${{ secrets.SCRIBDBOT_GH_CONTAINER_REGISTRY_TOKEN }} - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v6 # required for the changelog to work correctly - name: Unshallow From 28f86cdbd84a48c876fece99556d9de6a60c411b Mon Sep 17 00:00:00 2001 From: kristianmills Date: Wed, 25 Mar 2026 16:21:47 -0700 Subject: [PATCH 2/2] chore: DEVPLAT-7373 fix Node.js 20 deprecated GitHub Actions --- .github/workflows/cicd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index b54bbb7..ac00113 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v6 with: go-version: 1.20 id: go @@ -38,7 +38,7 @@ jobs: steps: - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v4 with: registry: ghcr.io username: scribdbot @@ -52,13 +52,13 @@ jobs: run: git fetch --prune --unshallow - name: Set up Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v6 with: go-version: 1.20 id: go - name: Run goreleaser - uses: goreleaser/goreleaser-action@v5 + uses: goreleaser/goreleaser-action@v7 with: version: latest args: release --rm-dist