Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions/checkout action to v4 #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading