Skip to content

Commit 010de91

Browse files
committed
Update GitHub Actions to use new bashbrew action
This should fix errors that the old code would've run into thanks to the update to Go 1.18, and should help prevent them in the future by pinning to a specific release of both Bashbrew and the related scripts.
1 parent 905cae8 commit 010de91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
strategy: ${{ steps.generate-jobs.outputs.strategy }}
2323
steps:
2424
- uses: actions/checkout@v3
25+
- uses: docker-library/[email protected]
2526
- id: generate-jobs
2627
name: Generate Jobs
2728
run: |
28-
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
29-
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
29+
strategy="$(GITHUB_REPOSITORY=phpmyadmin "$BASHBREW_SCRIPTS/github-actions/generate.sh")"
30+
echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
3031
jq . <<<"$strategy" # sanity check / debugging aid
31-
echo "::set-output name=strategy::$strategy"
3232
3333
test:
3434
needs: generate-jobs

0 commit comments

Comments
 (0)