Skip to content

Commit

Permalink
chore: update GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Updated checkout action to v4 and added a token for fixture generation.
  • Loading branch information
ryan-gang committed Dec 27, 2024
1 parent ebba2b8 commit efd894b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.RYAN_FIXTURE_GEN_PAT }}

- name: Set up Go
uses: actions/setup-go@v1
Expand Down
2 changes: 1 addition & 1 deletion internal/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/codecrafters-io/tester-utils/random"
)

var SMALL_WORDS = []string{"foo", "bar", "baz", "qux", "quz"}
var SMALL_WORDS = []string{"foo", "bar", "baz", "qux", "quz", "ipsum", "lorem", "dolor", "sit", "amet"}
var LARGE_WORDS = []string{"hello", "world", "test", "example", "shell", "script"}

// getRandomDirectory creates a random directory in /tmp, creates the directories and returns the full path
Expand Down

0 comments on commit efd894b

Please sign in to comment.