From 2ec809283a7fe3626817b68c846a900cb8f3efc4 Mon Sep 17 00:00:00 2001 From: Todd Sedano Date: Wed, 17 Jan 2024 15:54:12 -0800 Subject: [PATCH] bump ci.yml and cd.yml dependencies (#44) --- .github/workflows/cd.yml | 8 ++++---- .github/workflows/ci.yml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e6891c3..2840a77 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445 + - uses: actions/checkout@v3 - name: Tag and Push Gem id: tag-and-push-gem - uses: discourse/publish-rubygems-action@04549cca4eecd343acd215114ebbbdb99630af90 + uses: discourse/publish-rubygems-action@v2 env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - GIT_EMAIL: ${{secrets.ALEX_GIT_EMAIL}} - GIT_NAME: ${{secrets.ALEX_GIT_NAME}} + GIT_EMAIL: ${{secrets.GUSTO_GIT_EMAIL}} + GIT_NAME: ${{secrets.GUSTO_GIT_NAME}} RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}} - name: Create GitHub Release run: gh release create v${{steps.tag-and-push-gem.outputs.gem_version}} --generate-notes diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 670f7c5..28aa57a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,9 @@ jobs: BUNDLE_GEMFILE: Gemfile name: "RSpec tests: Ruby ${{ matrix.ruby }}" steps: - - uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445 + - uses: actions/checkout@v4 - name: Set up Ruby ${{ matrix.ruby }} - uses: ruby/setup-ruby@360dc864d5da99d54fcb8e9148c14a84b90d3e88 + uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} @@ -31,9 +31,9 @@ jobs: name: "Type Check" runs-on: ubuntu-latest steps: - - uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445 + - uses: actions/checkout@v4 - name: Set up Ruby - uses: ruby/setup-ruby@360dc864d5da99d54fcb8e9148c14a84b90d3e88 + uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: head @@ -43,9 +43,9 @@ jobs: runs-on: ubuntu-latest name: Rubocop steps: - - uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445 + - uses: actions/checkout@v4 - name: Set up Ruby - uses: ruby/setup-ruby@360dc864d5da99d54fcb8e9148c14a84b90d3e88 + uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: head