Skip to content

Commit 8e5f434

Browse files
build(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.0` | `4.6.2` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | | [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4.4.0 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.4.0...v4.6.2) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `aws-actions/configure-aws-credentials` from 4 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@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8486855 commit 8e5f434

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: Build
2828
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- uses: ./.github/actions/init-monorepo
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check for mutations
4141
run: git diff --ignore-space-at-eol --exit-code -- ':!**/LICENSE-THIRD-PARTY'
4242
- name: Upload artifact
43-
uses: actions/upload-artifact@v4.4.0
43+
uses: actions/upload-artifact@v4.6.2
4444
with:
4545
name: build-artifact
4646
path: dist
@@ -61,17 +61,17 @@ jobs:
6161
- fast-api
6262
- cdk-deploy
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
fetch-depth: 0
6767
- name: Download build artifacts
68-
uses: actions/download-artifact@v4
68+
uses: actions/download-artifact@v5
6969
with:
7070
name: build-artifact
7171
path: dist
7272
- uses: ./.github/actions/init-monorepo
7373
- name: Configure AWS credentials
74-
uses: aws-actions/configure-aws-credentials@v4
74+
uses: aws-actions/configure-aws-credentials@v5
7575
with:
7676
role-to-assume: ${{ secrets.DEPLOY_INTEG_TESTS_ROLE_ARN }}
7777
aws-region: us-west-2
@@ -85,11 +85,11 @@ jobs:
8585
latest_commit: ${{ steps.git_remote.outputs.latest_commit }}
8686
skip_release: ${{ steps.should_skip_release.outputs.skip_release }}
8787
steps:
88-
- uses: actions/checkout@v4
88+
- uses: actions/checkout@v5
8989
with:
9090
fetch-depth: 0
9191
- name: Download build artifacts
92-
uses: actions/download-artifact@v4
92+
uses: actions/download-artifact@v5
9393
with:
9494
name: build-artifact
9595
path: dist
@@ -117,14 +117,14 @@ jobs:
117117
needs: [release]
118118
steps:
119119
- name: Download build artifacts
120-
uses: actions/download-artifact@v4
120+
uses: actions/download-artifact@v5
121121
with:
122122
name: build-artifact
123123
path: dist
124124
- name: Setup Pages
125125
uses: actions/configure-pages@v5
126126
- name: Upload artifact
127-
uses: actions/upload-pages-artifact@v3
127+
uses: actions/upload-pages-artifact@v4
128128
with:
129129
path: 'dist/docs'
130130
- name: Deploy to GitHub Pages

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: Build
2828
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- uses: ./.github/actions/init-monorepo
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check for mutations
4141
run: git diff --ignore-space-at-eol --exit-code -- ':!**/LICENSE-THIRD-PARTY'
4242
- name: Upload artifact
43-
uses: actions/upload-artifact@v4.4.0
43+
uses: actions/upload-artifact@v4.6.2
4444
with:
4545
name: build-artifact
4646
path: dist
@@ -61,11 +61,11 @@ jobs:
6161
- trpc-api
6262
- fast-api
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
fetch-depth: 0
6767
- name: Download build artifacts
68-
uses: actions/download-artifact@v4
68+
uses: actions/download-artifact@v5
6969
with:
7070
name: build-artifact
7171
path: dist

.github/workflows/translate-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
ref: ${{ github.head_ref }} # Explicitly checkout the PR branch
3434
fetch-depth: 0 # Required to detect changed files
3535
token: ${{ secrets.TRANSLATE_PUSH_GITHUB_TOKEN }} # needed to trigger PR workflow after push
3636
- uses: ./.github/actions/init-monorepo
3737
- name: Configure AWS credentials
38-
uses: aws-actions/configure-aws-credentials@v4
38+
uses: aws-actions/configure-aws-credentials@v5
3939
with:
4040
role-to-assume: ${{ secrets.AWS_TRANSLATE_ROLE_ARN }}
4141
aws-region: ${{ secrets.AWS_TRANSLATE_AWS_REGION || 'us-west-2' }}

.github/workflows/update-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Update Versions
2121
runs-on: codebuild-nx-plugin-for-aws-runner-${{ github.run_id }}-${{ github.run_attempt }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626
token: ${{ secrets.UPDATE_VERSIONS_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)