Skip to content

Commit 6fbd5cc

Browse files
Update GH Actions
1 parent 675c68c commit 6fbd5cc

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/interpreter.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
test-interpreter_spec:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
container:
1818
image: crystallang/crystal:1.14.0-build
1919
name: "Test Interpreter"
@@ -24,7 +24,7 @@ jobs:
2424
run: make interpreter_spec junit_output=.junit/interpreter_spec.xml
2525

2626
build-interpreter:
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-24.04
2828
container:
2929
image: crystallang/crystal:1.14.0-build
3030
name: Build interpreter
@@ -43,7 +43,7 @@ jobs:
4343
4444
test-interpreter-std_spec:
4545
needs: build-interpreter
46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-24.04
4747
container:
4848
image: crystallang/crystal:1.14.0-build
4949
strategy:
@@ -67,7 +67,7 @@ jobs:
6767

6868
test-interpreter-primitives_spec:
6969
needs: build-interpreter
70-
runs-on: ubuntu-22.04
70+
runs-on: ubuntu-24.04
7171
container:
7272
image: crystallang/crystal:1.14.0-build
7373
name: "Test primitives_spec with interpreter"

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
- name: Download Crystal source
2828
uses: actions/checkout@v4
2929

30-
- uses: cachix/install-nix-action@v27
30+
- uses: cachix/install-nix-action@v31
3131
with:
3232
extra_nix_config: |
3333
experimental-features = nix-command
3434
35-
- uses: cachix/cachix-action@v15
35+
- uses: cachix/cachix-action@v16
3636
with:
3737
name: crystal-ci
3838
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'

.github/workflows/mingw-w64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- name: Setup MSYS2
5353
id: msys2
54-
uses: msys2/setup-msys2@ddf331adaebd714795f1042345e6ca57bd66cea8 # v2.24.1
54+
uses: msys2/setup-msys2@61f9e5e925871ba6c9e3e8da24ede83ea27fa91f # v2.27.0
5555
with:
5656
msystem: UCRT64
5757
update: true
@@ -100,7 +100,7 @@ jobs:
100100
steps:
101101
- name: Setup MSYS2
102102
id: msys2
103-
uses: msys2/setup-msys2@ddf331adaebd714795f1042345e6ca57bd66cea8 # v2.24.1
103+
uses: msys2/setup-msys2@61f9e5e925871ba6c9e3e8da24ede83ea27fa91f # v2.27.0
104104
with:
105105
msystem: UCRT64
106106
update: true

.github/workflows/win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
2525

2626
- name: Set up Cygwin
27-
uses: cygwin/cygwin-install-action@006ad0b0946ca6d0a3ea2d4437677fa767392401 # v4
27+
uses: cygwin/cygwin-install-action@f61179d72284ceddc397ed07ddb444d82bf9e559 # v5
2828
with:
2929
packages: make
3030
install-dir: C:\cygwin64
@@ -87,7 +87,7 @@ jobs:
8787
key: win-openssl-libs-3.1.0-${{ hashFiles('etc/win-ci/build-openssl.ps1') }}-msvc
8888
- name: Set up NASM
8989
if: steps.cache-openssl.outputs.cache-hit != 'true'
90-
uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
90+
uses: ilammy/setup-nasm@72793074d3c8cdda771dba85f6deafe00623038b # v1.5.2
9191
- name: Build OpenSSL
9292
if: steps.cache-openssl.outputs.cache-hit != 'true'
9393
run: .\etc\win-ci\build-openssl.ps1 -BuildTree deps\openssl -Version 3.1.0
@@ -103,7 +103,7 @@ jobs:
103103
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
104104

105105
- name: Set up Cygwin
106-
uses: cygwin/cygwin-install-action@006ad0b0946ca6d0a3ea2d4437677fa767392401 # v4
106+
uses: cygwin/cygwin-install-action@f61179d72284ceddc397ed07ddb444d82bf9e559 # v5
107107
with:
108108
packages: make
109109
install-dir: C:\cygwin64
@@ -176,7 +176,7 @@ jobs:
176176
key: win-openssl-dlls-3.1.0-${{ hashFiles('etc/win-ci/build-openssl.ps1') }}-msvc
177177
- name: Set up NASM
178178
if: steps.cache-openssl-dlls.outputs.cache-hit != 'true'
179-
uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
179+
uses: ilammy/setup-nasm@72793074d3c8cdda771dba85f6deafe00623038b # v1.5.2
180180
- name: Build OpenSSL
181181
if: steps.cache-openssl-dlls.outputs.cache-hit != 'true'
182182
run: .\etc\win-ci\build-openssl.ps1 -BuildTree deps\openssl -Version 3.1.0 -Dynamic

0 commit comments

Comments
 (0)