action: bump ruby from 3.3.0 to 3.3.1 #80
Workflow file for this run
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: Main Workflow | |
on: | |
push: | |
branches: | |
# Only allow the workflow to be run on version 2 of the Action. | |
- main | |
pull_request: | |
branches: | |
# Only allow the workflow to be run on version 2 of the Action source code. | |
- main | |
jobs: | |
lint-script: | |
name: Lint Action script | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Action script | |
uses: azohra/[email protected] | |
# It's okay to continue even if the action errors out, for now | |
continue-on-error: true |