diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d28bd93..b3442cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 = [ @@ -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", @@ -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 { @@ -314,7 +314,7 @@ jobs: } - name: Configure assets-matrix - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: assets-matrix with: script: | @@ -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: @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml index f623dfc..5790849 100644 --- a/.github/workflows/scan.yml +++ b/.github/workflows/scan.yml @@ -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 # { @@ -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 = [ @@ -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", @@ -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 { @@ -295,7 +295,7 @@ jobs: } - name: Configure assets-matrix - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: assets-matrix with: script: | @@ -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: @@ -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: @@ -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: @@ -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: