Skip to content

Commit

Permalink
use checkout v4, minor lint fixes (#124)
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Fisher <services@id264.net>
  • Loading branch information
snltd and Robert Fisher authored Sep 28, 2024
1 parent aede0e2 commit 78666f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set env
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF:10})" >> $GITHUB_ENV

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ name: Test

on:
push:
branches-ignore: release
branches-ignore:
- release

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.0, 3.1, 3.2]
ruby-version: [3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion lib/wavefront-sdk/report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module Wavefront
class Report < Write
def initialize(creds = {}, opts = {})
opts[:writer] = :api
super(creds, opts)
super
end
end
end
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class WavefrontTestBase < Minitest::Test
def initialize(args)
require_relative libfile_to_test
setup_fixtures if respond_to?(:setup_fixtures)
super(args)
super
end

def libfile_to_test
Expand Down

0 comments on commit 78666f4

Please sign in to comment.