Skip to content

Commit

Permalink
Update max to Ruby 3.2 and upgrade checkout action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
petergoldstein committed Jan 17, 2023
1 parent 11fff64 commit 27be089
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gempush.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
needs: [tests-linting]
steps:
# is this the same commit hash we saw in commit?
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
git fetch --prune --unshallow
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-linting.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false # Allows both ruby versions to run before failing
matrix:
ruby: ['2.5', '3.1']
ruby: ['2.5', '3.2']

steps:
- uses: actions/checkout@master
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false # Allows both ruby versions to run before failing
matrix:
ruby: ['2.5', '3.1']
ruby: ['2.5', '3.2']

steps:
# is this the same commit hash we saw in commit?
Expand Down

0 comments on commit 27be089

Please sign in to comment.