Skip to content

chore(deps): update all non-major dependencies #396

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #396

Workflow file for this run

name: Ruby Lint CI
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
if: ${{ github.repository == 'GoogleCloudPlatform/functions-framework-ruby' }}
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
github.com:443
index.rubygems.org:443
objects.githubusercontent.com:443
rubygems.org:443
- name: Checkout repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install Ruby 3.0
uses: ruby/setup-ruby@a05e47355e80e57b9a67566a813648fa67d92011 # v1.157.0
with:
ruby-version: "3.0"
bundler-cache: true
- name: Install toys
run: gem install --no-document toys
- name: Lint
run: "toys ci --only --test-rubocop"