Skip to content

Commit

Permalink
Fix script/update_ci_yaml to match changes from #68.
Browse files Browse the repository at this point in the history
This should fix the build.
  • Loading branch information
myronmarston committed Dec 27, 2024
1 parent 7e43020 commit 0f6a649
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions script/update_ci_yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,19 @@ jobs:
datastore: "<%= primary_datastore_version %>"

steps:
- uses: actions/checkout@v4
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit

- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- uses: ruby/setup-ruby@v1
- uses: ruby/setup-ruby@bfefad842bb982ff05b233bcbc1571d97a87e69f # v1.206.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- uses: KengoTODA/actions-setup-docker-compose@main
- uses: KengoTODA/actions-setup-docker-compose@a25fb82c577d314635e25bac72995718b9296dd2 # main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -156,6 +161,11 @@ jobs:
name: All CI Checks Passed
needs: [ci-check]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit

- run: |
result="${{ needs.ci-check.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
Expand Down

0 comments on commit 0f6a649

Please sign in to comment.