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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Get token from Github App
id: app_token
uses: actions/create-github-app-token@v2.2.1
uses: actions/create-github-app-token@v3.0.0
with:
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Run Chromatic
if: env.CHROMATIC_PROJECT_TOKEN
uses: chromaui/action@v15.1.0
uses: chromaui/action@v15.3.0
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true # 👈 Required option to enable TurboSnap
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
key: dist-${{ github.sha }}
fail-on-cache-miss: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.0.0
- name: Configure AWS credentials
if: vars.ECR_REGION
uses: aws-actions/configure-aws-credentials@v6.0.0
Expand All @@ -222,7 +222,7 @@ jobs:
- name: Login to Amazon ECR
id: login-ecr
if: vars.ECR_REGION
uses: aws-actions/amazon-ecr-login@v2.0.1
uses: aws-actions/amazon-ecr-login@v2.0.2
- name: Format image tag parts
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
Expand All @@ -234,7 +234,7 @@ jobs:
echo SHORT_SHA=${SHA::8} >> "$GITHUB_ENV"
- name: Build image
if: vars.ECR_REGION
uses: docker/build-push-action@v6.19.2
uses: docker/build-push-action@v7.0.0
with:
context: .
file: ./${{ matrix.target.file }}
Expand All @@ -252,7 +252,7 @@ jobs:
cache-to: mode=max,image-manifest=true,oci-mediatypes=true,type=registry,ref=${{ env.REPOSITORY_URI }}:${{ env.SANITIZED_BRANCH }}-${{ matrix.platform }}-cache
- name: Build image
if: ${{ !vars.ECR_REGION }}
uses: docker/build-push-action@v6.19.2
uses: docker/build-push-action@v7.0.0
with:
context: .
file: ./${{ matrix.target.file }}
Expand All @@ -278,7 +278,7 @@ jobs:
aws-region: ${{ vars.ECR_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2.0.1
uses: aws-actions/amazon-ecr-login@v2.0.2
- name: Format image tag components
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
VERSION: ${{ needs.get-version.outputs.version }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.0.0
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v6.0.0
with:
Expand All @@ -53,9 +53,9 @@ jobs:
aws-region: ${{ vars.ECR_REGION }}
- name: Login to private ECR
id: login-private-ecr
uses: aws-actions/amazon-ecr-login@v2.0.1
uses: aws-actions/amazon-ecr-login@v2.0.2
- name: Login to public ECR
uses: aws-actions/amazon-ecr-login@v2.0.1
uses: aws-actions/amazon-ecr-login@v2.0.2
env:
AWS_REGION: ${{ vars.ECR_PUBLIC_REGION }}
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Create a GitHub release
id: create-github-release
if: inputs.github_release
uses: softprops/action-gh-release@v2.5.0
uses: softprops/action-gh-release@v2.6.1
with:
target_commitish: ${{ github.sha }}
tag_name: ${{ env.VERSION }}
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
steps:
- name: Get GitHub App token
id: app_token
uses: actions/create-github-app-token@v2.2.1
uses: actions/create-github-app-token@v3.0.0
with:
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
Expand All @@ -154,7 +154,7 @@ jobs:
steps:
- name: Get token from Github App
id: app_token
uses: actions/create-github-app-token@v2.2.1
uses: actions/create-github-app-token@v3.0.0
with:
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
Expand All @@ -175,7 +175,7 @@ jobs:
steps:
- name: Get GitHub App token
id: app_token
uses: actions/create-github-app-token@v2.2.1
uses: actions/create-github-app-token@v3.0.0
with:
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: Get token from Github App
id: app_token
uses: actions/create-github-app-token@v2.2.1
uses: actions/create-github-app-token@v3.0.0
with:
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
Expand Down
Loading