diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index c1db2ea..bb14b74 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -16,11 +16,11 @@ jobs: fail-fast: false matrix: PYTHON: - - 3.8.19 - - 3.9.19 - - 3.10.14 - - 3.11.9 - - 3.12.4 + - 3.8.20 + - 3.9.20 + - 3.10.15 + - 3.11.10 + - 3.12.7 steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/Makefile b/Makefile index a360f43..108b57c 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,11 @@ IMAGE = flaconi/jnlp-slave-py TAG = latest # Base image version: https://github.com/jenkinsci/docker-agent/releases/latest -JENKINS_AGENT = 3248.v65ecb_254c298-5-jdk17 +JENKINS_AGENT = 3283.v92c105e0f819-1-jdk17 # Python versions: $PYTHON_MAJOR.$PYTHON_PATCH PYTHON_MAJOR = 3.12 -PYTHON_PATCH = 4 +PYTHON_PATCH = 7 pull: docker pull $(shell grep FROM Dockerfile | sed 's/^FROM//g' | sed "s/\$${JENKINS_AGENT}/$(JENKINS_AGENT)/g";)