diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 860cd0484..a9e3ce322 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - run: git push origin HEAD:v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 621fc0cb3..77cec0646 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: name: ${{ matrix.os }} ${{ matrix.ruby }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: @@ -116,7 +116,7 @@ jobs: name: "Test rubygems input set to latest upgrades the default RubyGems version" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 2.6 @@ -127,7 +127,7 @@ jobs: name: "Test rubygems input set to a fixed version upgrades RubyGems to that version if the default is older" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 2.6 @@ -138,7 +138,7 @@ jobs: name: "Test rubygems input set to a fixed version noops if the default is newer" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 3.1.0 @@ -149,7 +149,7 @@ jobs: name: "Test with an exact Bundler version" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 2.6 @@ -162,7 +162,7 @@ jobs: env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/bundler1.gemfile steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 2.7 @@ -180,7 +180,7 @@ jobs: env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: 2.6 @@ -193,7 +193,7 @@ jobs: env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/nokogiri.gemfile steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./ with: ruby-version: truffleruby-head @@ -203,7 +203,7 @@ jobs: lint: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: yarn install - run: yarn run package - name: Check generated files are up to date