Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent c93c9df commit 9904462
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ruby-gem-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- 3.2
- 3.3
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 'Test ruby gem action'
uses: ./build-ruby-gem
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ruby-gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
bundler: ${{ fromJSON(inputs.bundler) }}
exclude: ${{ fromJSON(inputs.exclude)}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Before build
if: ${{ inputs.before_build != '' }}
run: "${{ inputs.before_build }}"
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ contains(github.ref, 'refs/tags/v') && contains(github.ref, inputs.package) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: cadwallion/publish-rubygems-action@master
env:
RELEASE_COMMAND: rake build release:guard_clean release:rubygem_push
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yarn-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node: ${{ fromJSON(inputs.node) }}
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
Expand All @@ -52,7 +52,7 @@ jobs:
name: Release
if: ${{ contains(github.ref, 'refs/tags/v') && contains(github.ref, inputs.package) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Node ${{ env.NODE_RELEASE_VERSION }}
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 9904462

Please sign in to comment.