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
2 changes: 1 addition & 1 deletion .github/workflows/ci.json.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ on:
workflow_dispatch:
jobs:
lint:
uses: parcelLab/ci/.github/workflows/json.yaml@main
uses: parcelLab/ci/.github/workflows/json.yaml@v8
4 changes: 2 additions & 2 deletions .github/workflows/ci.pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- synchronize
jobs:
pr:
uses: parcelLab/ci/.github/workflows/pr.yaml@main
uses: parcelLab/ci/.github/workflows/pr.yaml@v8
secrets:
repoAccessToken: ${{ secrets.GITHUB_TOKEN }}
actionlint:
Expand All @@ -24,4 +24,4 @@ jobs:
- name: Run actionlint
run: /home/runner/go/bin/actionlint
yamllint:
uses: parcelLab/ci/.github/workflows/yaml.yaml@main
uses: parcelLab/ci/.github/workflows/yaml.yaml@v8
4 changes: 2 additions & 2 deletions .github/workflows/ci.release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
git config user.name "parcellab-dev-bot"
git config user.email "dev.bot@parcellab.com"

# Delete existing major version tag if it exists
git tag -d "${{ steps.version.outputs.major_version }}" || true
git push -d origin "${{ steps.version.outputs.major_version }}" || true
Expand All @@ -38,6 +38,6 @@ jobs:
git tag "${{ steps.version.outputs.major_version }}"
git push origin tag "${{ steps.version.outputs.major_version }}"
release:
uses: parcelLab/ci/.github/workflows/release.yaml@main
uses: parcelLab/ci/.github/workflows/release.yaml@v8
secrets:
repoAccessToken: ${{ secrets.REPO_ACCESS_TOKEN_OPEN_SOURCE }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ on:
workflow_dispatch:
jobs:
lint:
uses: parcelLab/ci/.github/workflows/yaml.yaml@main
uses: parcelLab/ci/.github/workflows/yaml.yaml@v8
3 changes: 1 addition & 2 deletions .github/workflows/kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,12 @@ jobs:

build:
needs: [initialize]
uses: parcelLab/ci/.github/workflows/build-image.yaml@v8.2.5
uses: parcelLab/ci/.github/workflows/build-image.yaml@v8
with:
artifactName: ${{ inputs.artifactName }}
artifactPath: ${{ inputs.artifactPath }}
imageTargets: ${{ inputs.imageTargets }}
preScript: ${{ inputs.preScript }}
registryUsername: ${{ inputs.registryUsername }}
enableContainerScan: ${{ inputs.enableContainerScan }}
runner: ${{ inputs.runner }}
version: ${{ needs.initialize.outputs.version }}
Expand Down