Skip to content

Commit 8400326

Browse files
chore(ci)(deps): bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `1` | `5` | | [aws-actions/amazon-ecr-login](https://github.com/aws-actions/amazon-ecr-login) | `1` | `2` | | [aws-actions/amazon-ecs-deploy-task-definition](https://github.com/aws-actions/amazon-ecs-deploy-task-definition) | `1` | `2` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `5` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `aws-actions/configure-aws-credentials` from 1 to 5 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@v1...v5) Updates `aws-actions/amazon-ecr-login` from 1 to 2 - [Release notes](https://github.com/aws-actions/amazon-ecr-login/releases) - [Changelog](https://github.com/aws-actions/amazon-ecr-login/blob/main/CHANGELOG.md) - [Commits](aws-actions/amazon-ecr-login@v1...v2) Updates `aws-actions/amazon-ecs-deploy-task-definition` from 1 to 2 - [Release notes](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/releases) - [Changelog](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/blob/master/CHANGELOG.md) - [Commits](aws-actions/amazon-ecs-deploy-task-definition@v1...v2) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v6) Updates `codecov/codecov-action` from 3 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/amazon-ecr-login dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/amazon-ecs-deploy-task-definition dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ecc84ae commit 8400326

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/deploy-to-ecs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v6
3535

3636
- name: Configure AWS credentials
37-
uses: aws-actions/configure-aws-credentials@v1
37+
uses: aws-actions/configure-aws-credentials@v5
3838
with:
3939
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
4040
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -66,18 +66,18 @@ jobs:
6666

6767
steps:
6868
- name: Checkout
69-
uses: actions/checkout@v3
69+
uses: actions/checkout@v6
7070

7171
- name: Configure AWS credentials
72-
uses: aws-actions/configure-aws-credentials@v1
72+
uses: aws-actions/configure-aws-credentials@v5
7373
with:
7474
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7575
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7676
aws-region: ${{ env.AWS_REGION }}
7777

7878
- name: Login to Amazon ECR
7979
id: login-ecr
80-
uses: aws-actions/amazon-ecr-login@v1
80+
uses: aws-actions/amazon-ecr-login@v2
8181

8282
- name: Build, tag, and push image to Amazon ECR
8383
id: build-image
@@ -106,7 +106,7 @@ jobs:
106106
image: ${{ steps.build-image.outputs.image }}
107107

108108
- name: Deploy main application ECS task definition
109-
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
109+
uses: aws-actions/amazon-ecs-deploy-task-definition@v2
110110
with:
111111
task-definition: ${{ steps.task-def-app.outputs.task-definition }}
112112
service: ${{ secrets.ECS_SERVICE }}
@@ -121,10 +121,10 @@ jobs:
121121

122122
steps:
123123
- name: Checkout
124-
uses: actions/checkout@v3
124+
uses: actions/checkout@v6
125125

126126
- name: Configure AWS credentials
127-
uses: aws-actions/configure-aws-credentials@v1
127+
uses: aws-actions/configure-aws-credentials@v5
128128
with:
129129
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
130130
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -139,7 +139,7 @@ jobs:
139139
cat aws/current-otel-task-definition.json
140140
141141
- name: Deploy OpenTelemetry ECS task definition
142-
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
142+
uses: aws-actions/amazon-ecs-deploy-task-definition@v2
143143
with:
144144
task-definition: aws/current-otel-task-definition.json
145145
service: ${{ secrets.ECS_OTEL_SERVICE }}

.github/workflows/publish-sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@v4
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: '3.11'
3131

.github/workflows/sdk-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
python-version: ["3.9", "3.10", "3.11"]
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v6
1818

1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

@@ -35,7 +35,7 @@ jobs:
3535
pytest tests/test_auth.py tests/test_base.py tests/test_client.py tests/test_datasets.py tests/test_aimodels.py tests/test_usecases.py tests/test_exceptions.py -v -p no:django -o addopts= --override-ini=django_find_project=false --noconftest --cov=dataspace_sdk --cov-report=term-missing --cov-report=xml
3636
3737
- name: Upload coverage to Codecov
38-
uses: codecov/codecov-action@v3
38+
uses: codecov/codecov-action@v5
3939
with:
4040
file: ./coverage.xml
4141
flags: unittests

0 commit comments

Comments
 (0)