From d35160403ffd1770b75a2b24ec0aa45186175802 Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 11:39:15 -0400 Subject: [PATCH 01/10] upgrade actions/* to use latest version with latest supported node.js version --- .github/workflows/main-version-update.yml | 2 +- .github/workflows/test.yml | 4 ++-- cache/action.yml | 2 +- deploy/eks/action.yml | 2 +- deploy/lambda/go/action.yml | 2 +- go/configure/action.yml | 21 +++++++-------------- go/deps/action.yml | 2 +- go/test/action.yml | 4 ++-- ruby/deps/action.yml | 2 +- ruby/lint/action.yml | 2 +- ruby/test/action.yml | 4 ++-- sonarqube-scan/action.yml | 2 +- 12 files changed, 21 insertions(+), 28 deletions(-) diff --git a/.github/workflows/main-version-update.yml b/.github/workflows/main-version-update.yml index 3c2b018..5cf3699 100644 --- a/.github/workflows/main-version-update.yml +++ b/.github/workflows/main-version-update.yml @@ -17,7 +17,7 @@ jobs: tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Git config diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4214694..55d8eb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: units: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-node@v3 with: node-version: 16 @@ -22,7 +22,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./ with: milliseconds: 1000 diff --git a/cache/action.yml b/cache/action.yml index dbc3f5c..5ed5072 100644 --- a/cache/action.yml +++ b/cache/action.yml @@ -15,7 +15,7 @@ inputs: runs: using: 'composite' steps: - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ inputs.DEPLOY_CACHE_PATH }} key: ${{ inputs.DEPLOY_CACHE_KEY }} diff --git a/deploy/eks/action.yml b/deploy/eks/action.yml index ef1404c..4e5778d 100644 --- a/deploy/eks/action.yml +++ b/deploy/eks/action.yml @@ -75,7 +75,7 @@ runs: aws-access-key-id: ${{ inputs.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ inputs.AWS_SECRET_ACCESS_KEY }} aws-region: ${{ inputs.AWS_REGION }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Cleaning workspace if: ${{ inputs.CLEAN_WORKSPACE == 'true' }} shell: bash diff --git a/deploy/lambda/go/action.yml b/deploy/lambda/go/action.yml index 94033c0..8b2364c 100644 --- a/deploy/lambda/go/action.yml +++ b/deploy/lambda/go/action.yml @@ -13,7 +13,7 @@ inputs: runs: using: 'composite' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Cleaning workspace shell: bash run: shopt -s dotglob && rm -rf "${{ github.workspace }}"/* diff --git a/go/configure/action.yml b/go/configure/action.yml index c66b363..212fbf4 100644 --- a/go/configure/action.yml +++ b/go/configure/action.yml @@ -6,7 +6,7 @@ inputs: description: Flipp circleci repo token required: true BUF_BUILD_USER: - description: Buf CI user stored as secret + description: Buf CI user stored as secret. Deprecated - no longer used by buf-action, kept for backward compatibility. required: false BUF_BUILD_API_TOKEN: description: Buf API token stored as secret @@ -20,7 +20,7 @@ runs: using: "composite" steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: ${{ inputs.FETCH_DEPTH }} - name: Setting up private modules access @@ -32,18 +32,11 @@ runs: BUF_VERSION=$(awk '/^buf[[:space:]]+/ {print $2}' .tool-versions) echo "BUF_VERSION=${BUF_VERSION}" >> $GITHUB_ENV shell: bash - - name: Setting up buf if version is provided - uses: bufbuild/buf-setup-action@v1 - if: "${{ inputs.BUF_BUILD_API_TOKEN != '' && env.BUF_VERSION != '' }}" + - name: Setting up buf + uses: bufbuild/buf-action@v1 + if: "${{ inputs.BUF_BUILD_API_TOKEN != '' }}" with: + setup_only: true github_token: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} - buf_user: ${{ inputs.BUF_BUILD_USER }} - buf_api_token: ${{ inputs.BUF_BUILD_API_TOKEN }} + token: ${{ inputs.BUF_BUILD_API_TOKEN }} version: ${{ env.BUF_VERSION }} - - name: Setting up buf if version is not provided - uses: bufbuild/buf-setup-action@v1 - if: "${{ inputs.BUF_BUILD_API_TOKEN != '' && env.BUF_VERSION == '' }}" - with: - github_token: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} - buf_user: ${{ inputs.BUF_BUILD_USER }} - buf_api_token: ${{ inputs.BUF_BUILD_API_TOKEN }} diff --git a/go/deps/action.yml b/go/deps/action.yml index b96883b..6d43aec 100644 --- a/go/deps/action.yml +++ b/go/deps/action.yml @@ -19,7 +19,7 @@ runs: steps: - name: Restoring vendor modules from cache id: vendor-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor key: vendor-cache-${{ hashFiles('go.mod','go.sum') }} diff --git a/go/test/action.yml b/go/test/action.yml index 2f70c5e..f7c0cd6 100644 --- a/go/test/action.yml +++ b/go/test/action.yml @@ -21,13 +21,13 @@ runs: shell: bash run: ${GITHUB_ACTION_PATH}/test.sh "${{ inputs.TAGS }}" "${{ inputs.TIMEOUT }}" "${{ inputs.PARALLEL }}" - name: Uploading test report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: "${{ github.sha }}-test-report.out" path: "./test-report.out" retention-days: 1 - name: Uploading coverage report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: "${{ github.sha }}-coverage.out" path: "./coverage.out" diff --git a/ruby/deps/action.yml b/ruby/deps/action.yml index 86afc02..8e90f35 100644 --- a/ruby/deps/action.yml +++ b/ruby/deps/action.yml @@ -11,7 +11,7 @@ runs: steps: - name: Bundle cache id: bundle-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: vendor/bundle key: rails-${{ hashFiles('Gemfile.lock') }} diff --git a/ruby/lint/action.yml b/ruby/lint/action.yml index e496065..d2cd7e5 100644 --- a/ruby/lint/action.yml +++ b/ruby/lint/action.yml @@ -12,7 +12,7 @@ runs: env: BUNDLE_DEPLOYMENT: true - name: 'Upload rubocop results' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: "${{ github.sha }}-lint-results.out" path: ./rubocop/rubocop.json diff --git a/ruby/test/action.yml b/ruby/test/action.yml index bb9099f..11e3ae8 100644 --- a/ruby/test/action.yml +++ b/ruby/test/action.yml @@ -59,13 +59,13 @@ runs: run: | sed -i 's@${{ env.ROOT_PATH }}''@/github/workspace/@g' coverage.json - name: 'Upload coverage' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ github.sha }}-coverage.out path: ./coverage/coverage.json retention-days: 1 - name: 'Upload test results' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ github.sha }}-test-report.out path: ./result/rspec.xml diff --git a/sonarqube-scan/action.yml b/sonarqube-scan/action.yml index 43fd16f..4206363 100644 --- a/sonarqube-scan/action.yml +++ b/sonarqube-scan/action.yml @@ -20,7 +20,7 @@ inputs: runs: using: "composite" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set branch variable From 80a73be1203f3a67ce7477bedb90757bfe91e132 Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 13:15:28 -0400 Subject: [PATCH 02/10] changes for testing --- deploy/eks/action.yml | 2 +- deploy/lambda/go/action.yml | 2 +- go/build-and-test/action.yml | 4 ++-- go/build/action.yml | 4 ++-- go/deps/action.yml | 2 +- go/lint/action.yml | 6 +++--- go/smoke-test/action.yml | 2 +- ruby/deps/action.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/deploy/eks/action.yml b/deploy/eks/action.yml index 4e5778d..c2b09d6 100644 --- a/deploy/eks/action.yml +++ b/deploy/eks/action.yml @@ -81,7 +81,7 @@ runs: shell: bash run: shopt -s dotglob && rm -rf "${{ github.workspace }}"/* - name: Restoring workspace from cache - uses: wishabi/github-actions/cache@v0 + uses: wishabi/github-actions/cache@CDIS-3318 - name: Deploying to EKS via Helm release shell: bash run: | diff --git a/deploy/lambda/go/action.yml b/deploy/lambda/go/action.yml index 8b2364c..cfa747e 100644 --- a/deploy/lambda/go/action.yml +++ b/deploy/lambda/go/action.yml @@ -18,7 +18,7 @@ runs: shell: bash run: shopt -s dotglob && rm -rf "${{ github.workspace }}"/* - name: Restoring workspace from cache - uses: wishabi/github-actions/cache@v0 + uses: wishabi/github-actions/cache@CDIS-3318 - name: Building lambda function for deployment shell: bash run: | diff --git a/go/build-and-test/action.yml b/go/build-and-test/action.yml index b4e0053..811c708 100644 --- a/go/build-and-test/action.yml +++ b/go/build-and-test/action.yml @@ -56,13 +56,13 @@ runs: run: echo "short_sha=`echo ${GITHUB_SHA::7}`" > $GITHUB_OUTPUT shell: bash - name: Run custom Go build action - uses: wishabi/github-actions/go/build@v0 + uses: wishabi/github-actions/go/build@CDIS-3318 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} BUF_BUILD_API_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} - name: Run custom Go test action - uses: wishabi/github-actions/go/test@v0 + uses: wishabi/github-actions/go/test@CDIS-3318 env: DB_HOST: ${{ inputs.DB_HOST }} DB_USER: ${{ inputs.DB_USER }} diff --git a/go/build/action.yml b/go/build/action.yml index 363631d..6e73927 100644 --- a/go/build/action.yml +++ b/go/build/action.yml @@ -37,13 +37,13 @@ runs: run: echo "short_sha=`echo ${GITHUB_SHA::7}`" > $GITHUB_OUTPUT shell: bash - name: Configure Go environment - uses: wishabi/github-actions/go/configure@v0 + uses: wishabi/github-actions/go/configure@CDIS-3318 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} BUF_BUILD_API_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} - name: Setup Go dependencies - uses: wishabi/github-actions/go/deps@v0 + uses: wishabi/github-actions/go/deps@CDIS-3318 env: BUF_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} with: diff --git a/go/deps/action.yml b/go/deps/action.yml index 6d43aec..b55ca97 100644 --- a/go/deps/action.yml +++ b/go/deps/action.yml @@ -82,4 +82,4 @@ runs: run: mockery shell: bash - name: Caching workspace for deploy jobs - uses: wishabi/github-actions/cache@v0 + uses: wishabi/github-actions/cache@CDIS-3318 diff --git a/go/lint/action.yml b/go/lint/action.yml index 640cfd7..43e3169 100644 --- a/go/lint/action.yml +++ b/go/lint/action.yml @@ -45,14 +45,14 @@ runs: run: echo "short_sha=`echo ${GITHUB_SHA::7}`" > $GITHUB_OUTPUT shell: bash - name: Configure Go environment - uses: wishabi/github-actions/go/configure@v0 + uses: wishabi/github-actions/go/configure@CDIS-3318 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} BUF_BUILD_API_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} FETCH_DEPTH: 0 - name: Setup Go dependencies - uses: wishabi/github-actions/go/deps@v0 + uses: wishabi/github-actions/go/deps@CDIS-3318 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} - name: Setup safe directory @@ -94,7 +94,7 @@ runs: version: ${{ env.GOLANGCI_LINT_VERSION }} # Optional - if blank, will use the action's default version resolution - name: Run v2 Go linter if : ${{ env.IS_V2 == 'true' }} - uses: golangci/golangci-lint-action@v7 # Note: v7 and up require golangci-lint v2 config + uses: golangci/golangci-lint-action@v9 # Note: v7/v9 and up require golangci-lint v2 config. v9 runs on Node.js 24. with: skip-cache: true args: --verbose diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index 92257ca..b8218ef 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -48,7 +48,7 @@ runs: run: echo "short_sha=`echo ${GITHUB_SHA::7}`" > $GITHUB_OUTPUT shell: bash - name: Restore cache - uses: wishabi/github-actions/cache@v0 + uses: wishabi/github-actions/cache@CDIS-3318 - name: Run Go Smoke Tests if: inputs.GO_SMOKE == 'true' run: | diff --git a/ruby/deps/action.yml b/ruby/deps/action.yml index 8e90f35..3c405b7 100644 --- a/ruby/deps/action.yml +++ b/ruby/deps/action.yml @@ -28,4 +28,4 @@ runs: BUNDLE_JOBS: 4 BUNDLE_DEPLOYMENT: ${{ inputs.library == '' }} - name: Caching workspace for deploy jobs - uses: wishabi/github-actions/cache@v0 + uses: wishabi/github-actions/cache@CDIS-3318 From 113a3f0499651e489a89ffffd4f810401f75ddec Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 13:45:56 -0400 Subject: [PATCH 03/10] claude suggestions --- go/configure/action.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/go/configure/action.yml b/go/configure/action.yml index 212fbf4..0c8594e 100644 --- a/go/configure/action.yml +++ b/go/configure/action.yml @@ -32,11 +32,18 @@ runs: BUF_VERSION=$(awk '/^buf[[:space:]]+/ {print $2}' .tool-versions) echo "BUF_VERSION=${BUF_VERSION}" >> $GITHUB_ENV shell: bash - - name: Setting up buf + - name: Setting up buf with pinned version uses: bufbuild/buf-action@v1 - if: "${{ inputs.BUF_BUILD_API_TOKEN != '' }}" + if: "${{ inputs.BUF_BUILD_API_TOKEN != '' && env.BUF_VERSION != '' }}" with: setup_only: true github_token: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} token: ${{ inputs.BUF_BUILD_API_TOKEN }} version: ${{ env.BUF_VERSION }} + - name: Setting up buf with default version + uses: bufbuild/buf-action@v1 + if: "${{ inputs.BUF_BUILD_API_TOKEN != '' && env.BUF_VERSION == '' }}" + with: + setup_only: true + github_token: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} + token: ${{ inputs.BUF_BUILD_API_TOKEN }} From 4d693a3c2339cb6357686bb59ed10a5905334e60 Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 14:38:12 -0400 Subject: [PATCH 04/10] bump aws and DD --- deploy/eks/action.yml | 4 ++-- go/smoke-test/action.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/eks/action.yml b/deploy/eks/action.yml index 4b5516b..7b5e872 100644 --- a/deploy/eks/action.yml +++ b/deploy/eks/action.yml @@ -52,13 +52,13 @@ runs: fi - name: Configuring AWS credentials (IAM role) if: ${{ inputs.AWS_ROLE_ARN != '' }} - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ inputs.AWS_ROLE_ARN }} aws-region: ${{ inputs.AWS_REGION }} - name: Configuring AWS credentials (static) if: ${{ inputs.AWS_ROLE_ARN == '' }} - uses: aws-actions/configure-aws-credentials@v4 + uses: aws-actions/configure-aws-credentials@v6 with: aws-access-key-id: ${{ inputs.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ inputs.AWS_SECRET_ACCESS_KEY }} diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index d679018..bb4ae99 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -44,11 +44,11 @@ runs: shell: bash - name: Run DataDog Synthetics if: inputs.DD_SYNTHETIC_IDS != '' - uses: DataDog/synthetics-ci-github-action@v1.17.0 + uses: DataDog/synthetics-ci-github-action@v4 with: - api_key: ${{ inputs.DD_API_KEY }} - app_key: ${{ inputs.DD_APP_KEY }} - public_ids: ${{ inputs.DD_SYNTHETIC_IDS }} + api-key: ${{ inputs.DD_API_KEY }} + app-key: ${{ inputs.DD_APP_KEY }} + public-ids: ${{ inputs.DD_SYNTHETIC_IDS }} - name: Write smoke test summary if: always() shell: bash From b2bf66a2e20293d395f6aa33fe59e16aa4621141 Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 14:48:36 -0400 Subject: [PATCH 05/10] missed this --- ruby/one-for-all/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/one-for-all/action.yml b/ruby/one-for-all/action.yml index 6a22e7c..c7710e4 100644 --- a/ruby/one-for-all/action.yml +++ b/ruby/one-for-all/action.yml @@ -5,7 +5,7 @@ runs: using: "composite" steps: - name: Download test result - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: ${{ github.sha }}-test-report.out path: ./result/ From b7f36fcc41a14fdc6a82906874fcfd9134ef3239 Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 14:57:55 -0400 Subject: [PATCH 06/10] missed this --- ruby/one-for-all/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/one-for-all/action.yml b/ruby/one-for-all/action.yml index c7710e4..e769735 100644 --- a/ruby/one-for-all/action.yml +++ b/ruby/one-for-all/action.yml @@ -5,7 +5,7 @@ runs: using: "composite" steps: - name: Download test result - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ github.sha }}-test-report.out path: ./result/ From 1b1c96b46b57476a0f4c702a96b689880115c89b Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 15:01:16 -0400 Subject: [PATCH 07/10] try v3 --- go/smoke-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index bb4ae99..3387f21 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -44,7 +44,7 @@ runs: shell: bash - name: Run DataDog Synthetics if: inputs.DD_SYNTHETIC_IDS != '' - uses: DataDog/synthetics-ci-github-action@v4 + uses: DataDog/synthetics-ci-github-action@v3 with: api-key: ${{ inputs.DD_API_KEY }} app-key: ${{ inputs.DD_APP_KEY }} From a1d058721b70a96136c0f51d339beac76ad51b8a Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 15:03:43 -0400 Subject: [PATCH 08/10] use DD v4.0.0 --- go/smoke-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index 3387f21..c201fdb 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -44,7 +44,7 @@ runs: shell: bash - name: Run DataDog Synthetics if: inputs.DD_SYNTHETIC_IDS != '' - uses: DataDog/synthetics-ci-github-action@v3 + uses: DataDog/synthetics-ci-github-action@v4.0.0 with: api-key: ${{ inputs.DD_API_KEY }} app-key: ${{ inputs.DD_APP_KEY }} From 5a5ead6c8cd6aeb03bbcd8f60e98ccc95480570a Mon Sep 17 00:00:00 2001 From: Chris Karlin Date: Mon, 23 Mar 2026 15:40:16 -0400 Subject: [PATCH 09/10] remove self ref --- deploy/eks/action.yml | 2 +- deploy/lambda/go/action.yml | 2 +- go/build-and-test/action.yml | 4 ++-- go/build/action.yml | 4 ++-- go/deps/action.yml | 2 +- go/lint/action.yml | 4 ++-- go/smoke-test/action.yml | 4 ++-- ruby/deps/action.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/deploy/eks/action.yml b/deploy/eks/action.yml index 7b5e872..3893fbb 100644 --- a/deploy/eks/action.yml +++ b/deploy/eks/action.yml @@ -69,7 +69,7 @@ runs: shell: bash run: shopt -s dotglob && rm -rf "${{ github.workspace }}"/* - name: Restoring workspace from cache - uses: wishabi/github-actions/cache@CDIS-3318 + uses: wishabi/github-actions/cache@v0 - name: Deploying to EKS via Helm release shell: bash run: | diff --git a/deploy/lambda/go/action.yml b/deploy/lambda/go/action.yml index cfa747e..8b2364c 100644 --- a/deploy/lambda/go/action.yml +++ b/deploy/lambda/go/action.yml @@ -18,7 +18,7 @@ runs: shell: bash run: shopt -s dotglob && rm -rf "${{ github.workspace }}"/* - name: Restoring workspace from cache - uses: wishabi/github-actions/cache@CDIS-3318 + uses: wishabi/github-actions/cache@v0 - name: Building lambda function for deployment shell: bash run: | diff --git a/go/build-and-test/action.yml b/go/build-and-test/action.yml index 743dc31..606f2d9 100644 --- a/go/build-and-test/action.yml +++ b/go/build-and-test/action.yml @@ -60,7 +60,7 @@ runs: id: branch-info uses: wishabi/github-actions/common/branch-info@v0 - name: Run custom Go build action - uses: wishabi/github-actions/go/build@CDIS-3318 + uses: wishabi/github-actions/go/build@v0 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} @@ -80,7 +80,7 @@ runs: DB_PASSWORD: ${{ inputs.DB_PASSWORD }} DB_PORT: ${{ inputs.DB_PORT }} - name: Run custom Go test action - uses: wishabi/github-actions/go/test@CDIS-3318 + uses: wishabi/github-actions/go/test@v0 env: DB_HOST: ${{ inputs.DB_HOST }} DB_USER: ${{ inputs.DB_USER }} diff --git a/go/build/action.yml b/go/build/action.yml index 816f86f..26c5ec4 100644 --- a/go/build/action.yml +++ b/go/build/action.yml @@ -33,13 +33,13 @@ runs: id: branch-info uses: wishabi/github-actions/common/branch-info@v0 - name: Configure Go environment - uses: wishabi/github-actions/go/configure@CDIS-3318 + uses: wishabi/github-actions/go/configure@v0 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} BUF_BUILD_API_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} - name: Setup Go dependencies - uses: wishabi/github-actions/go/deps@CDIS-3318 + uses: wishabi/github-actions/go/deps@v0 env: BUF_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} with: diff --git a/go/deps/action.yml b/go/deps/action.yml index 2c322f8..c37d2ea 100644 --- a/go/deps/action.yml +++ b/go/deps/action.yml @@ -107,4 +107,4 @@ runs: if command -v mockery &> /dev/null; then echo "Mockery: $(mockery --version 2>/dev/null || echo 'installed but version unknown')"; fi echo "::endgroup::" - name: Caching workspace for deploy jobs - uses: wishabi/github-actions/cache@CDIS-3318 + uses: wishabi/github-actions/cache@v0 diff --git a/go/lint/action.yml b/go/lint/action.yml index e971443..2b3aac6 100644 --- a/go/lint/action.yml +++ b/go/lint/action.yml @@ -33,14 +33,14 @@ runs: id: branch-info uses: wishabi/github-actions/common/branch-info@v0 - name: Configure Go environment - uses: wishabi/github-actions/go/configure@CDIS-3318 + uses: wishabi/github-actions/go/configure@v0 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} BUF_BUILD_USER: ${{ inputs.BUF_BUILD_USER }} BUF_BUILD_API_TOKEN: ${{ inputs.BUF_BUILD_API_TOKEN }} FETCH_DEPTH: 0 - name: Setup Go dependencies - uses: wishabi/github-actions/go/deps@CDIS-3318 + uses: wishabi/github-actions/go/deps@v0 with: FLIPPCIRCLECIPULLER_REPO_TOKEN: ${{ inputs.FLIPPCIRCLECIPULLER_REPO_TOKEN }} - name: Setup safe directory diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index c201fdb..69aba44 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -36,7 +36,7 @@ runs: id: branch-info uses: wishabi/github-actions/common/branch-info@v0 - name: Restore cache - uses: wishabi/github-actions/cache@CDIS-3318 + uses: wishabi/github-actions/cache@v0 - name: Run Go Smoke Tests if: inputs.GO_SMOKE == 'true' run: | @@ -44,7 +44,7 @@ runs: shell: bash - name: Run DataDog Synthetics if: inputs.DD_SYNTHETIC_IDS != '' - uses: DataDog/synthetics-ci-github-action@v4.0.0 + uses: DataDog/synthetics-ci-github-action@v3.8.2 with: api-key: ${{ inputs.DD_API_KEY }} app-key: ${{ inputs.DD_APP_KEY }} diff --git a/ruby/deps/action.yml b/ruby/deps/action.yml index 3c405b7..8e90f35 100644 --- a/ruby/deps/action.yml +++ b/ruby/deps/action.yml @@ -28,4 +28,4 @@ runs: BUNDLE_JOBS: 4 BUNDLE_DEPLOYMENT: ${{ inputs.library == '' }} - name: Caching workspace for deploy jobs - uses: wishabi/github-actions/cache@CDIS-3318 + uses: wishabi/github-actions/cache@v0 From cae3c46c787333a6a4578fb3fa37154fecd96437 Mon Sep 17 00:00:00 2001 From: Chris Karlin <46851840+chriskarlin@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:44:55 -0400 Subject: [PATCH 10/10] revert to v4.0.0 --- go/smoke-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/smoke-test/action.yml b/go/smoke-test/action.yml index 69aba44..9be047b 100644 --- a/go/smoke-test/action.yml +++ b/go/smoke-test/action.yml @@ -44,7 +44,7 @@ runs: shell: bash - name: Run DataDog Synthetics if: inputs.DD_SYNTHETIC_IDS != '' - uses: DataDog/synthetics-ci-github-action@v3.8.2 + uses: DataDog/synthetics-ci-github-action@v4.0.0 with: api-key: ${{ inputs.DD_API_KEY }} app-key: ${{ inputs.DD_APP_KEY }}