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

[TOOLS-7104] Update github actions due to node 16 deprecation #101

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 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,7 +32,7 @@ jobs:
uses: rlespinasse/[email protected]

- 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 }}
Expand Down
Loading