Last active
January 2, 2025 03:31
GitHub Actions workflow for health repo
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
name: Build and Test | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'workouts/**.csv' | |
- '.github/**' | |
jobs: | |
build: | |
name: Gist Box | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.4.1 | |
- name: Cache gems | |
uses: actions/cache@v4.2.0 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gem- | |
- name: Install gems | |
run: | | |
gem install octokit | |
- name: Run script to update gist | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIST_ID: ${{ secrets.GIST_ID }} | |
run: | | |
ruby .github/scripts/hadge.rb -t $GH_TOKEN -g $GIST_ID workouts/2025.csv |
Thanks, done!
Hey @ashtom, absolutely love Hadge! I have a couple of fixes that I'd recommend to ensure relevancy, in light of deprecated actions:
- Line 18: Replace
actions/setup-ruby@v1
withruby/setup-ruby@v1
. (Also, the Ruby version that worked effortlessly for me isruby-version: 3.0.0
) - Line 22: Replace
actions/cache@v1.1.2
withactions/cache@v4.2.0
@aaishikasb Thanks, just updated to the version I am using for 2025 and it includes both your changes!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
master
branch should be updated tomain
branch; the default for new repositories.