Skip to content
Open
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/core-bootstrap---go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
docker-build:
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
uses: Netcracker/qubership-core-infra/.github/workflows/docker-build.yaml@v2.4.1
uses: Netcracker/qubership-core-infra/.github/workflows/docker-build.yaml@bc2a0bd082147e23b4091616c608a21cc2957728 # v2.4.1
with:
dry-run: false
config-filename: "core-bootstrap---docker-dev-config.json"
2 changes: 1 addition & 1 deletion .github/workflows/coretpl---publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
fi

- name: Set up Helm
uses: azure/setup-helm@v5
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5
with:
version: v3.14.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cr-synchronizer---go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
docker-build:
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) }}
uses: Netcracker/qubership-core-infra/.github/workflows/docker-build.yaml@v2.4.1
uses: Netcracker/qubership-core-infra/.github/workflows/docker-build.yaml@bc2a0bd082147e23b4091616c608a21cc2957728 # v2.4.1
with:
dry-run: false
config-filename: "cr-synchronizer---docker-dev-config.json"
2 changes: 1 addition & 1 deletion .github/workflows/link-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: >-
'./**/*.md'
Expand Down
4 changes: 2 additions & 2 deletions core-bootstrap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26 AS build
FROM golang:1.26@sha256:6df14f4a4bc9d979a3721f488981e0d1b318006377e473ed23d026796f5f4c0a AS build

Check warning on line 1 in core-bootstrap/Dockerfile

View check run for this annotation

SonarQubeCloud / [Core Bootstrap] SonarCloud Code Analysis

Use either the version tag or the digest for the image instead of both.

See more on https://sonarcloud.io/project/issues?id=Netcracker_qubership-core-bootstrap&issues=AZ5GJ2hqxHKSlhRoye6_&open=AZ5GJ2hqxHKSlhRoye6_&pullRequest=146

WORKDIR /app

Expand All @@ -7,7 +7,7 @@
RUN go mod download
RUN go build -o platform-bootstrap-image .

FROM ghcr.io/netcracker/qubership-core-base:2.2.13 AS run
FROM ghcr.io/netcracker/qubership-core-base:2.2.13@sha256:39304438e598101578f91d84bc58699fd1a3f717a46b786cb43523735826e7b4 AS run

Check warning on line 10 in core-bootstrap/Dockerfile

View check run for this annotation

SonarQubeCloud / [Core Bootstrap] SonarCloud Code Analysis

Use either the version tag or the digest for the image instead of both.

See more on https://sonarcloud.io/project/issues?id=Netcracker_qubership-core-bootstrap&issues=AZ5GJ2hqxHKSlhRoye7A&open=AZ5GJ2hqxHKSlhRoye7A&pullRequest=146

COPY --chown=10001:0 --chmod=555 --from=build app/platform-bootstrap-image /app/platform-bootstrap-image

Expand Down
4 changes: 2 additions & 2 deletions cr-synchronizer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26 AS build
FROM golang:1.26@sha256:6df14f4a4bc9d979a3721f488981e0d1b318006377e473ed23d026796f5f4c0a AS build

Check warning on line 1 in cr-synchronizer/Dockerfile

View check run for this annotation

SonarQubeCloud / [Core Bootstrap] SonarCloud Code Analysis

Use either the version tag or the digest for the image instead of both.

See more on https://sonarcloud.io/project/issues?id=Netcracker_qubership-core-bootstrap&issues=AZ5GJ2eLxHKSlhRoye69&open=AZ5GJ2eLxHKSlhRoye69&pullRequest=146

WORKDIR /app

Expand All @@ -7,7 +7,7 @@
RUN go mod download
RUN go build -o cr-synchronizer .

FROM ghcr.io/netcracker/qubership-core-base:2.2.13 AS run
FROM ghcr.io/netcracker/qubership-core-base:2.2.13@sha256:39304438e598101578f91d84bc58699fd1a3f717a46b786cb43523735826e7b4 AS run

Check warning on line 10 in cr-synchronizer/Dockerfile

View check run for this annotation

SonarQubeCloud / [Core Bootstrap] SonarCloud Code Analysis

Use either the version tag or the digest for the image instead of both.

See more on https://sonarcloud.io/project/issues?id=Netcracker_qubership-core-bootstrap&issues=AZ5GJ2eLxHKSlhRoye6-&open=AZ5GJ2eLxHKSlhRoye6-&pullRequest=146

COPY --chown=10001:0 --chmod=555 --from=build app/cr-synchronizer /app/cr-checker

Expand Down
Loading