Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions .github/workflows/gitleaks.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
PALETTE_REGISTRY_CLI_VERSION: 4.6.1
K9S_VERSION: 0.32.5
SPECTRO_CLI_VERSION: 4.6.0
NODE_VERSION: "22"

jobs:
docker:
Expand All @@ -25,7 +26,7 @@ jobs:
- name: Setup nodeJs
uses: actions/setup-node@v6
with:
node-version: "20"
node-version: ${{ env.NODE_VERSION }}

- name: Check out code into the Go module directory
uses: actions/checkout@v6
Expand Down Expand Up @@ -103,7 +104,7 @@ jobs:
- name: Setup Nodejs
uses: actions/setup-node@v6
with:
node-version: 18
node-version: ${{ env.NODE_VERSION }}

- name: Install dependencies
run: npm ci
Expand Down
25 changes: 23 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ env:
TERRAFORM_VERSION: 1.9.0
PALETTE_REGISTRY_CLI_VERSION: 4.5.0
K9S_VERSION: 0.32.5
SPECTRO_CLI_VERSION: 4.6.0
SPECTRO_CLI_VERSION: 4.6.0
NODE_VERSION: "22"

concurrency:
group: docker-${{ github.ref }}
Expand Down Expand Up @@ -49,7 +50,7 @@ jobs:
- name: Setup Nodejs
uses: actions/setup-node@v6
with:
node-version: "20"
node-version: ${{ env.NODE_VERSION }}

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -83,3 +84,23 @@ jobs:
PALETTE_REGISTRY_CLI_VERSION=${{env.PALETTE_REGISTRY_CLI_VERSION}}
K9S_VERSION=${{env.K9S_VERSION}}
SPECTRO_CLI_VERSION=${{env.SPECTRO_CLI_VERSION}}

semantic:
name: "Semantic Release Dry Run"
needs: [run-ci]
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Setup nodeJs
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}

- name: Check out code into the Go module directory
uses: actions/checkout@v6

- name: Install dependencies
run: npm ci

- name: Semantic Release Dry Run
run: npx semantic-release --dry-run
Loading