Skip to content

Commit e2ff63a

Browse files
chore: bump the actions-deps group with 5 updates
Bumps the actions-deps group with 5 updates: | 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) | `3` | `6` | | [aws-actions/amazon-ecr-login](https://github.com/aws-actions/amazon-ecr-login) | `1` | `2` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `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 3 to 6 - [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@v3...v6) 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 `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v6) Updates `actions/cache` from 3 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: aws-actions/amazon-ecr-login dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 632692e commit e2ff63a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ jobs:
1010
id-token: write
1111
contents: write
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v6
1414

1515
- name: configure aws credentials
16-
uses: aws-actions/configure-aws-credentials@v3
16+
uses: aws-actions/configure-aws-credentials@v6
1717
with:
1818
role-to-assume: arn:aws:iam::035866691871:role/incubator-cicd-people-depot
1919
role-session-name: incubator-cicd-people-depot
2020
aws-region: us-west-2
2121

2222
- name: Login to Amazon ECR
2323
id: login-ecr
24-
uses: aws-actions/amazon-ecr-login@v1
24+
uses: aws-actions/amazon-ecr-login@v2
2525

2626

2727
- name: Build, tag, and push the image to Amazon ECR

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
permissions:
1010
contents: write
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v4
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-python@v6
1414
with:
1515
python-version: 3.x
1616
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
17-
- uses: actions/cache@v3
17+
- uses: actions/cache@v5
1818
with:
1919
key: mkdocs-material-${{ env.cache_id }}
2020
path: .cache

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
- name: Validate mkdocs
1414
run: |
1515
docker run --rm -v $(pwd):/app hackforlaops/mkdocs:latest mkdocs build -d /tmp --strict

0 commit comments

Comments
 (0)