Skip to content

Bump actions/checkout from 3.6.0 to 4.1.1 #1

Bump actions/checkout from 3.6.0 to 4.1.1

Bump actions/checkout from 3.6.0 to 4.1.1 #1

Workflow file for this run

name: legacy-git
on:
pull_request:
push:
branches:
- master
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
legacy_git:
name: Verify behavior under old git
runs-on: ubuntu-22.04
container:
image: centos/ruby-27-centos7@sha256:b24b875dcdb6cb8f2145706dcaac74bb25ae3b9d9f7ba69d7ae700a7aee1e1bd
options: --user=root
steps:
# This locked with v3.6.0 for node18, centos7 image is only working with actions/checkout@v3
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install rubygems
run: ruby setup.rb
- name: Check we can install a Gemfile with git sources
run: bundle init && bundle add fileutils --git https://github.com/ruby/fileutils
timeout-minutes: 10