Skip to content

Commit 2d74d7f

Browse files
Update GH Actions
1 parent 62adc41 commit 2d74d7f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/bats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run:
2929
shell: bash
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232

3333
- uses: crystal-lang/install-crystal@v1
3434
with:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
files: ${{ steps.list.outputs.files }}
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- id: list
2727
run: |
2828
files=$(find test -type f -name '*.bats' -print0 | sed -z 's|^test/||' | jq -Rs -c 'split("\u0000")[:-1]')
@@ -47,7 +47,7 @@ jobs:
4747
run:
4848
shell: bash
4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151

5252
- uses: crystal-lang/install-crystal@v1
5353
with:

.github/workflows/test-crystal-shards.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
echo "crystal_build_opts: ${{ github.event.inputs.crystal_build_opts }}"
4444
echo "previous_crystal_release: ${{ github.event.inputs.previous_crystal_release }}"
4545
- name: Checkout test-ecosystem
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
with:
4848
path: test-ecosystem
4949
- name: Install Libraries
@@ -63,7 +63,7 @@ jobs:
6363
tar -xz -C /tmp/crystal --strip-component=1 -f /tmp/crystal.tar.gz
6464
echo "/tmp/crystal/bin/" >> $GITHUB_PATH
6565
- name: Checkout Crystal
66-
uses: actions/checkout@v5
66+
uses: actions/checkout@v6
6767
with:
6868
repository: ${{ github.event.inputs.crystal_repo }}
6969
ref: ${{ github.event.inputs.crystal_branch }}
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
echo ::set-output name=sha::$( curl -u "u:${{ secrets.MY_GITHUB_PAT }}" https://api.github.com/repos/${{ github.event.inputs.crystal_repo }}/git/ref/heads/${{ github.event.inputs.crystal_branch }} | jq .object.sha | tr -d '"' )
7777
- name: Checkout Shards
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v6
7979
with:
8080
repository: ${{ github.event.inputs.shards_repo }}
8181
ref: ${{ github.event.inputs.shards_branch }}
@@ -165,7 +165,7 @@ jobs:
165165
container: ubuntu:latest
166166
services:
167167
postgres:
168-
image: postgres:18.0-alpine
168+
image: postgres:18.1-alpine
169169
env:
170170
POSTGRES_HOST_AUTH_METHOD: trust
171171
mysql:
@@ -199,7 +199,7 @@ jobs:
199199
./test-ecosystem/scripts/apt-install-crystal-deps.sh
200200
./test-ecosystem/scripts/00-install-bats.sh
201201
- name: Initialize postgres
202-
uses: docker://postgres:18.0-alpine
202+
uses: docker://postgres:18.1-alpine
203203
with:
204204
args: /bin/sh -c "psql -U postgres -h postgres -f ./test-ecosystem/scripts/pg-init.sql"
205205
- name: Initialize mysql

0 commit comments

Comments
 (0)