Skip to content

Commit 2963463

Browse files
committed
Use the latest Ring release (v1.22)
1 parent aed995a commit 2963463

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ RUN mkdir -p /opt/ring
108108

109109
# Clone and build Ring
110110
WORKDIR /opt/ring
111-
RUN git clone --depth 1 --branch v1.21.2 -q https://github.com/ring-lang/ring .
111+
RUN git clone --depth 1 --branch v1.22 -q https://github.com/ring-lang/ring .
112112

113113
COPY patches/ringpdfgen.patch .
114114
RUN git apply ringpdfgen.patch

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ A GitHub Action that compiles [Ring](https://ring-lang.net/) Programming Languag
4141
| `output_exe` || `false` | Set to `true` to generate an executable using Ring2EXE |
4242
| `args` || - | Additional arguments to pass to Ring or Ring2EXE |
4343
| `ring_packages` || - | Space-separated list of packages to install from RingPM |
44-
| `version` || `v1.21.2` | Ring compiler version to use |
44+
| `version` || `v1.22` | Ring compiler version to use |
4545

4646
## Usage Examples
4747

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inputs:
2020
version:
2121
description: 'Specify the version of the Ring compiler to use (commit ID, tag, branch, or hash)'
2222
required: false
23-
default: 'v1.21.2'
23+
default: 'v1.22'
2424

2525
branding:
2626
color: 'blue'

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Check if we need to switch Ring versions
4-
if [ "$INPUT_VERSION" != "v1.21.2" ]; then
4+
if [ "$INPUT_VERSION" != "v1.22" ]; then
55
# Navigate to the ring directory
66
pushd /opt/ring
77

0 commit comments

Comments
 (0)