Skip to content

Commit 3cf9e69

Browse files
authored
Merge pull request #63 from rtCamp/update/docker
Update Dockerfile to use Ubuntu 24.04 and PHP 8.3
2 parents ec4a33e + 1e6ff55 commit 3cf9e69

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/dependabot.yml

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

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# ubuntu:latest as of 2023-11-15T09:52:14.989810029UTC
2-
FROM ubuntu@sha256:2b7412e6465c3c7fc5bb21d3e6f1917c167358449fecac8176c6e496e5c1f05f
3-
1+
FROM ubuntu:24.04
42
LABEL "com.github.actions.icon"="check-circle"
53
LABEL "com.github.actions.color"="green"
64
LABEL "com.github.actions.name"="PHPCS Code Review"
75
LABEL "com.github.actions.description"="Run automated code review using PHPCS on your pull requests."
86
LABEL "org.opencontainers.image.source"="https://github.com/rtCamp/action-phpcs-code-review"
97

108
ARG VAULT_VERSION=1.12.3
11-
ARG DEFAULT_PHP_VERSION=8.1
12-
ARG PHP_BINARIES_TO_PREINSTALL='7.4 8.0 8.1 8.2'
9+
ARG DEFAULT_PHP_VERSION=8.3
10+
ARG PHP_BINARIES_TO_PREINSTALL='7.4 8.0 8.1 8.2 8.3'
1311

1412
ENV DOCKER_USER=rtbot
1513
ENV ACTION_WORKDIR=/home/$DOCKER_USER

0 commit comments

Comments
 (0)