Skip to content

Commit

Permalink
chore: GitHub Actions config fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma committed Mar 12, 2024
1 parent 95dd145 commit 5057c84
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 21 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/dailly-generate-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ jobs:
APPROVAL_GITHUB_TOKEN: ${{secrets.YOSHI_APPROVER_TOKEN}}
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
ruby-version: "3.3"
- name: Install Elixir
uses: erlef/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: "23.3.4.10"
elixir-version: "1.12.3"
otp-version: "23.3.4.19"
elixir-version: "1.12.3-otp-23"
version-type: strict
- name: Install tools
run: "gem install --no-document toys"
- name: execute
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/generate-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ jobs:
APPROVAL_GITHUB_TOKEN: ${{secrets.YOSHI_APPROVER_TOKEN}}
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
ruby-version: "3.3"
- name: Install Elixir
uses: erlef/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: "23.3.4.10"
elixir-version: "1.12.3"
otp-version: "23.3.4.19"
elixir-version: "1.12.3-otp-23"
version-type: strict
- name: Install tools
run: "gem install --no-document toys"
- name: execute
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@ jobs:
strategy:
matrix:
include:
- elixir: "1.7.4"
otp: "22.3.4.24"
- elixir: "1.12.3"
otp: "23.3.4.10"
- elixir: "1.13.1"
- elixir: "1.7.4-otp-22"
otp: "22.3.4.26"
- elixir: "1.12.3-otp-23"
otp: "23.3.4.19"
- elixir: "1.13.4-otp-24"
otp: "24.1.7"
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Elixir ${{ matrix.elixir }} on OTP ${{ matrix.otp }}
uses: erlef/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: "${{ matrix.otp }}"
elixir-version: "${{ matrix.elixir }}"
version-type: strict
- name: Run presubmits
run: mix do deps.get, presubmit --pr ${{ github.event.pull_request.number }}
required-checks:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/update-api-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Elixir
uses: actions/setup-elixir@v1
uses: actions/setup-beam@v1
with:
otp-version: "23.0.3"
elixir-version: "1.10.4"
otp-version: "23.3.4.19"
elixir-version: "1.12.3-otp-23"
version-type: strict
- name: Compile
run: |
mix do deps.get, compile
Expand Down

0 comments on commit 5057c84

Please sign in to comment.