Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SERF-2182] Update Node version in pipeline #123

Merged
merged 1 commit into from
Aug 9, 2024
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Inject slug/short variables
# A GitHub Action to expose the slug values of some GitHub ENV variables
Expand All @@ -22,17 +22,17 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.BUILDX_CACHE_PATH }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-

- uses: docker/build-push-action@v3
- uses: docker/build-push-action@v5
# GitHub Action to build and push Docker images with Buildx
# https://github.com/docker/build-push-action
name: Build image
Expand All @@ -49,7 +49,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Inject slug/short variables
# A GitHub Action to expose the slug values of some GitHub ENV variables
Expand All @@ -58,17 +58,17 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Get cached Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.BUILDX_CACHE_PATH }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-

- uses: docker/build-push-action@v3
- uses: docker/build-push-action@v5
# GitHub Action to build and push Docker images with Buildx
# https://github.com/docker/build-push-action
name: Build image
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Inject slug/short variables
# A GitHub Action to expose the slug values of some GitHub ENV variables
Expand All @@ -112,17 +112,17 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Get cached Docker layers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.BUILDX_CACHE_PATH }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-

- uses: docker/build-push-action@v3
- uses: docker/build-push-action@v5
# GitHub Action to build and push Docker images with Buildx
# https://github.com/docker/build-push-action
name: Build image
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Checkout
# A GitHub Action to checkout a repository.
# https://github.com/actions/checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
persist-credentials: false
Expand All @@ -32,14 +32,14 @@ jobs:
uses: rlespinasse/github-slug-action@v3.x

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.DEPLOYER_PRODUCTION_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
uses: aws-actions/amazon-ecr-login@v2

- name: Create release
env:
Expand Down
Loading