Skip to content

Commit 3dd2e47

Browse files
Update GitHub Actions to use current versions and newer JRuby
Co-authored-by: bartkamphorst <[email protected]>
1 parent 8286c25 commit 3dd2e47

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: Create Release
1717
id: create_release
18-
uses: actions/create-release@v1
18+
uses: softprops/action-gh-release@v1
1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
2121
with:
22-
tag_name: ${{ github.ref }}
23-
release_name: Release ${{ github.ref }}
22+
tag_name: ${{ github.ref_name }}
23+
name: Release ${{ github.ref_name }}
2424
draft: false
2525
prerelease: false

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
ruby: [jruby-9.2.18.0, jruby-head]
9+
ruby: [jruby-9.4.8.0, jruby-head]
1010
steps:
1111
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
1212
- run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
1313
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
1414
- name: Check out repository code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
1717
- run: echo "The workflow is now ready to test your code on the runner."
1818
- name: List files in the repository
1919
run: |
2020
ls ${{ github.workspace }}
21-
- uses: actions/setup-java@v2
21+
- uses: actions/setup-java@v4
2222
with:
2323
distribution: 'temurin'
2424
java-version: '17'

0 commit comments

Comments
 (0)