chore(deps): bump aws-sdk-s3 from 1.164.0 to 1.176.1 #357
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support documentation. | |
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | |
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: Ruby CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- macOS-latest | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3.1 | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rspec | |
- name: Run security checks - brakeman | |
run: bundle exec brakeman | |
- name: Run security checks - rubocop | |
run: bundle exec rubocop --parallel -A | |
- name: Run security checks - bundler-audit | |
run: bundle exec bundler-audit --update | |
- name: Setup ruby dependencies | |
uses: ruby/setup-ruby-pkgs@v1 | |
with: | |
ruby-version: 3.3.1 | |
bundler-cache: true | |
rubygems: 3.4.1 | |
- name: Setup yarn dependencies | Configure yarn | |
run: | | |
yarn install --check-files | |
yarn test | |
yarn audit | |
yarn install | |
yarn install -p |