Skip to content

feat(deps): bump slack-sdk from 3.32.0 to 3.33.0 in the all group #16

feat(deps): bump slack-sdk from 3.32.0 to 3.33.0 in the all group

feat(deps): bump slack-sdk from 3.32.0 to 3.33.0 in the all group #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
# https://github.com/marketplace/actions/docker-layer-caching
jobs:
build-start-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: make build
- name: Run Unit Tests
run: make test
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Push Images to ECR
run: |
.github/retag-and-push.sh navigator-notify latest
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}