From 9eca9623153b057c473659377520f2308123cb80 Mon Sep 17 00:00:00 2001 From: ee7 <45465154+ee7@users.noreply.github.com> Date: Fri, 8 Mar 2024 15:18:39 +0100 Subject: [PATCH] .github, Dockerfile: bump Nim from 2.0.0 to 2.0.2 (#172) See the release post [1] and changes [2]. [1] https://nim-lang.org/blog/2023/12/19/versions-1618-202-released.html [2] https://github.com/nim-lang/Nim/compare/v2.0.0...v2.0.2 --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95ef6ee..c650ce7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: pull_request: workflow_dispatch: env: - NIM_VERSION: 2.0.0 + NIM_VERSION: 2.0.2 jobs: job1: diff --git a/Dockerfile b/Dockerfile index f2019aa..528c4a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG REPO=alpine ARG IMAGE=3.19.1@sha256:6457d53fb065d6f250e1504b9bc42d5b6c65941d57532c072d929dd0628977d0 ARG NIM_REPO=exercism/nim-docker-base -ARG NIM_IMAGE=b71c422a03821f4764cf5a38d5b1d43f2e4022e5@sha256:f0f00a1be7e9de17bfcc5a0e9545b61a62e5b3b60687d8f17b72be41357c11fd +ARG NIM_IMAGE=68a971c28c2f5bd44915c1bd24cfd2a5856e5704@sha256:bc998636985028f4d0770f5aaed81cde64ffb429c43e90a36d2e7db54cd259c8 FROM ${REPO}:${IMAGE} AS base # We can't reliably pin the package versions on Alpine, so we ignore the linter warning. # See https://gitlab.alpinelinux.org/alpine/abuild/-/issues/9996