File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 99# See the License for the specific language governing permissions and
1010# limitations under the License.
1111
12- FROM golang:1.26rc3 AS build
12+ FROM golang:1.25.7 AS build
1313WORKDIR /yamllint-action
1414COPY go.mod go.sum /yamllint-action/
1515RUN go mod download
1616COPY . .
1717RUN export CGO_ENABLED=0 && go build -o ./yamllint-action .
1818
1919FROM python:3.13.1-alpine3.19
20- RUN pip install --no-cache-dir yamllint==1.35.1 && \
20+ RUN pip install --no-cache-dir yamllint==1.38.0 && \
2121 adduser --disabled-password --gecos "" --home "/nonexistent" --shell "/sbin/nologin" --no-create-home --uid 10001 appuser
2222COPY --from=build /yamllint-action/yamllint-action /yamllint-action
2323COPY entrypoint.sh /entrypoint.sh
You can’t perform that action at this time.
0 commit comments