Skip to content

Commit d3f424c

Browse files
authored
Merge pull request #70 from snapshotpl/strict-composer-version
Use strict composer version to help dependabot do his job
2 parents a00c016 + cb2dd99 commit d3f424c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
FROM composer:2 AS composer
2-
31
FROM ubuntu:focal
42

53
LABEL "repository"="http://github.com/laminas/laminas-continuous-integration-action"
@@ -47,7 +45,7 @@ RUN mkdir -p /etc/laminas-ci/problem-matcher \
4745

4846
COPY etc/markdownlint.json /etc/laminas-ci/markdownlint.json
4947

50-
COPY --from=composer /usr/bin/composer /usr/bin/composer
48+
COPY --from=composer:2.2.4 /usr/bin/composer /usr/bin/composer
5149

5250
RUN mkdir -p /usr/local/share/composer \
5351
&& composer global require staabm/annotate-pull-request-from-checkstyle \

0 commit comments

Comments
 (0)