Skip to content

Commit 27be089

Browse files
Update max to Ruby 3.2 and upgrade checkout action versions
1 parent 11fff64 commit 27be089

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929

3030
# Initializes the CodeQL tools for scanning.
3131
- name: Initialize CodeQL

.github/workflows/gempush.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
needs: [tests-linting]
1717
steps:
1818
# is this the same commit hash we saw in commit?
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- run: |
2121
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2222
git fetch --prune --unshallow

.github/workflows/tests-linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false # Allows both ruby versions to run before failing
2222
matrix:
23-
ruby: ['2.5', '3.1']
23+
ruby: ['2.5', '3.2']
2424

2525
steps:
2626
- uses: actions/checkout@master
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
fail-fast: false # Allows both ruby versions to run before failing
4444
matrix:
45-
ruby: ['2.5', '3.1']
45+
ruby: ['2.5', '3.2']
4646

4747
steps:
4848
# is this the same commit hash we saw in commit?

0 commit comments

Comments
 (0)