Skip to content

Commit c88cdcc

Browse files
authored
Merge branch 'main' into mg/OPS-3593
2 parents b7bef7a + 95fb15d commit c88cdcc

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Get token from Github App
1717
id: app_token
18-
uses: actions/create-github-app-token@v2.2.1
18+
uses: actions/create-github-app-token@v3.0.0
1919
with:
2020
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
2121
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Run Chromatic
3838
if: env.CHROMATIC_PROJECT_TOKEN
39-
uses: chromaui/action@v15.1.0
39+
uses: chromaui/action@v15.3.0
4040
with:
4141
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
4242
onlyChanged: true # 👈 Required option to enable TurboSnap

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
key: dist-${{ github.sha }}
212212
fail-on-cache-miss: true
213213
- name: Set up Docker Buildx
214-
uses: docker/setup-buildx-action@v3.12.0
214+
uses: docker/setup-buildx-action@v4.0.0
215215
- name: Configure AWS credentials
216216
if: vars.ECR_REGION
217217
uses: aws-actions/configure-aws-credentials@v6.0.0
@@ -222,7 +222,7 @@ jobs:
222222
- name: Login to Amazon ECR
223223
id: login-ecr
224224
if: vars.ECR_REGION
225-
uses: aws-actions/amazon-ecr-login@v2.0.1
225+
uses: aws-actions/amazon-ecr-login@v2.0.2
226226
- name: Format image tag parts
227227
env:
228228
BRANCH: ${{ github.head_ref || github.ref_name }}
@@ -234,7 +234,7 @@ jobs:
234234
echo SHORT_SHA=${SHA::8} >> "$GITHUB_ENV"
235235
- name: Build image
236236
if: vars.ECR_REGION
237-
uses: docker/build-push-action@v6.19.2
237+
uses: docker/build-push-action@v7.0.0
238238
with:
239239
context: .
240240
file: ./${{ matrix.target.file }}
@@ -252,7 +252,7 @@ jobs:
252252
cache-to: mode=max,image-manifest=true,oci-mediatypes=true,type=registry,ref=${{ env.REPOSITORY_URI }}:${{ env.SANITIZED_BRANCH }}-${{ matrix.platform }}-cache
253253
- name: Build image
254254
if: ${{ !vars.ECR_REGION }}
255-
uses: docker/build-push-action@v6.19.2
255+
uses: docker/build-push-action@v7.0.0
256256
with:
257257
context: .
258258
file: ./${{ matrix.target.file }}
@@ -278,7 +278,7 @@ jobs:
278278
aws-region: ${{ vars.ECR_REGION }}
279279
- name: Login to Amazon ECR
280280
id: login-ecr
281-
uses: aws-actions/amazon-ecr-login@v2.0.1
281+
uses: aws-actions/amazon-ecr-login@v2.0.2
282282
- name: Format image tag components
283283
env:
284284
BRANCH: ${{ github.head_ref || github.ref_name }}

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
VERSION: ${{ needs.get-version.outputs.version }}
4545
steps:
4646
- name: Set up Docker Buildx
47-
uses: docker/setup-buildx-action@v3.12.0
47+
uses: docker/setup-buildx-action@v4.0.0
4848
- name: Configure AWS credentials
4949
uses: aws-actions/configure-aws-credentials@v6.0.0
5050
with:
@@ -53,9 +53,9 @@ jobs:
5353
aws-region: ${{ vars.ECR_REGION }}
5454
- name: Login to private ECR
5555
id: login-private-ecr
56-
uses: aws-actions/amazon-ecr-login@v2.0.1
56+
uses: aws-actions/amazon-ecr-login@v2.0.2
5757
- name: Login to public ECR
58-
uses: aws-actions/amazon-ecr-login@v2.0.1
58+
uses: aws-actions/amazon-ecr-login@v2.0.2
5959
env:
6060
AWS_REGION: ${{ vars.ECR_PUBLIC_REGION }}
6161
with:
@@ -94,7 +94,7 @@ jobs:
9494
- name: Create a GitHub release
9595
id: create-github-release
9696
if: inputs.github_release
97-
uses: softprops/action-gh-release@v2.5.0
97+
uses: softprops/action-gh-release@v2.6.1
9898
with:
9999
target_commitish: ${{ github.sha }}
100100
tag_name: ${{ env.VERSION }}
@@ -133,7 +133,7 @@ jobs:
133133
steps:
134134
- name: Get GitHub App token
135135
id: app_token
136-
uses: actions/create-github-app-token@v2.2.1
136+
uses: actions/create-github-app-token@v3.0.0
137137
with:
138138
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
139139
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
@@ -154,7 +154,7 @@ jobs:
154154
steps:
155155
- name: Get token from Github App
156156
id: app_token
157-
uses: actions/create-github-app-token@v2.2.1
157+
uses: actions/create-github-app-token@v3.0.0
158158
with:
159159
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
160160
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
@@ -175,7 +175,7 @@ jobs:
175175
steps:
176176
- name: Get GitHub App token
177177
id: app_token
178-
uses: actions/create-github-app-token@v2.2.1
178+
uses: actions/create-github-app-token@v3.0.0
179179
with:
180180
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
181181
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

.github/workflows/sync-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Get token from Github App
1313
id: app_token
14-
uses: actions/create-github-app-token@v2.2.1
14+
uses: actions/create-github-app-token@v3.0.0
1515
with:
1616
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
1717
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

0 commit comments

Comments
 (0)