Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
steps:
- name: Configure common-matrix
id: common-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
# Specify versions of Erlang, Elixir, and base OS
# in a combination supported by https://hub.docker.com/r/hexpm/elixir/tags
with:
Expand All @@ -234,7 +234,7 @@ jobs:

- name: Configure test-matrix-parallel
id: test-matrix-parallel
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
let platforms = [
Expand All @@ -260,7 +260,7 @@ jobs:

- name: Configure prod-matrix
id: prod-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
# {
# os: "alma",
# elixir: "1.18.4",
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:

- name: Configure deploy-matrix
id: deploy-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
return {
Expand All @@ -314,7 +314,7 @@ jobs:
}

- name: Configure assets-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
id: assets-matrix
with:
script: |
Expand All @@ -338,7 +338,7 @@ jobs:
# * `prod` tag deploys to prod and dr
- name: Configure environment
id: get-environment
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:
# In dr, deploy is based on prod ECR repo in DR region
- name: Configure image-tag-deploy
id: get-image-tag-deploy
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand All @@ -393,7 +393,7 @@ jobs:
# Determine whether to deploy to AWS based on branch or tag name
- name: Configure deploy
id: get-deploy
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand All @@ -413,7 +413,7 @@ jobs:

- name: Configure sync-images
id: get-sync-images
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
steps:
- name: Configure common-matrix
id: common-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
# Specify versions of Erlang, Elixir, and base OS
# in a combination supported by https://hub.docker.com/r/hexpm/elixir/tags
# {
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:

- name: Configure test-matrix-parallel
id: test-matrix-parallel
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
let platforms = [
Expand All @@ -248,7 +248,7 @@ jobs:

- name: Configure prod-matrix
id: prod-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
# {
# os: "alma",
# elixir: "1.18.4",
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:

- name: Configure deploy-matrix
id: deploy-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
return {
Expand All @@ -295,7 +295,7 @@ jobs:
}

- name: Configure assets-matrix
uses: actions/github-script@v8
uses: actions/github-script@v9
id: assets-matrix
with:
script: |
Expand All @@ -319,7 +319,7 @@ jobs:
# * `prod` tag deploys to prod and dr
- name: Configure environment
id: get-environment
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
# In dr, deploy is based on prod ECR repo in DR region
- name: Configure image-tag-deploy
id: get-image-tag-deploy
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand All @@ -374,7 +374,7 @@ jobs:
# Determine whether to deploy to AWS based on branch or tag name
- name: Configure deploy
id: get-deploy
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand All @@ -394,7 +394,7 @@ jobs:

- name: Configure sync-images
id: get-sync-images
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
with:
Expand Down
Loading