Skip to content

Commit b0afd7b

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [actions/cache](https://github.com/actions/cache). Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `aws-actions/configure-aws-credentials` from 4 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@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 04ffe61 commit b0afd7b

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/deploy-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
- name: Create paths
2929
run: mkdir -p /tmp/deploy-artifacts/${{ github.sha }}
3030
- name: Download releases
31-
uses: actions/download-artifact@v4
31+
uses: actions/download-artifact@v7
3232
with:
3333
name: ${{ inputs.download-name }}
3434
merge-multiple: true
3535
path: /tmp/deploy-artifacts/${{ github.sha }}
3636
pattern: ${{ inputs.download-pattern }}
3737
- name: Upload releases
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v6
3939
with:
4040
name: ${{ inputs.upload-name }}
4141
path: /tmp/deploy-artifacts/${{ github.sha }}/*

.github/workflows/deploy-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Create paths
2424
run: mkdir -p /tmp/deploy-releases/${{ github.sha }}
2525
- name: Download releases
26-
uses: actions/download-artifact@v4
26+
uses: actions/download-artifact@v7
2727
with:
2828
name: ${{ inputs.download-name }}
2929
merge-multiple: true

.github/workflows/deploy-s3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
- name: Create paths
3434
run: mkdir -p /tmp/deploy-s3/${{ github.sha }}
3535
- name: Download releases
36-
uses: actions/download-artifact@v4
36+
uses: actions/download-artifact@v7
3737
with:
3838
name: ${{ inputs.download-name }}
3939
merge-multiple: true
4040
path: /tmp/deploy-s3/${{ github.sha }}
4141
pattern: ${{ inputs.download-pattern }}
4242
- name: Configure S3 Credentials
43-
uses: aws-actions/configure-aws-credentials@v4
43+
uses: aws-actions/configure-aws-credentials@v6
4444
with:
4545
aws-access-key-id: ${{ secrets.aws-access-key-id }}
4646
aws-secret-access-key: ${{ secrets.aws-secret-access-key }}

.github/workflows/generate-checksums.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Ensure path
5151
run: mkdir -p /tmp/checksums/${{ github.sha }}
5252
- name: Download artifacts
53-
uses: actions/download-artifact@v4
53+
uses: actions/download-artifact@v7
5454
with:
5555
name: ${{ inputs.download-name }}
5656
path: /tmp/checksums/${{ github.sha }}
@@ -69,7 +69,7 @@ jobs:
6969
--output=/tmp/${{ inputs.output }} \
7070
${{ inputs.show == true && '--show' || ''}}
7171
- name: Upload checksums
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v6
7373
with:
7474
name: ${{ inputs.upload-name }}
7575
path: /tmp/${{ inputs.output }}

.github/workflows/pr-docs-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Checkout code
1919
uses: actions/checkout@v6
2020
- name: Cache version builds
21-
uses: actions/cache@v4
21+
uses: actions/cache@v5
2222
with:
2323
key: lando-mvb-docs
2424
path: docs/.vitepress/cache/@lando/mvb

.github/workflows/pr-release-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
- name: Create releases
4141
run: mkdir -p /tmp/releases
4242
- name: Download artifacts
43-
uses: actions/download-artifact@v4
43+
uses: actions/download-artifact@v7
4444
with:
4545
path: /tmp/releases
4646
merge-multiple: true
4747
- name: Upload release files
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v6
4949
with:
5050
name: pr-release-test-${{ github.sha }}
5151
path: /tmp/releases/*

.github/workflows/release-rename-binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
mkdir -p /tmp/release-binary-destination/${{ github.sha }}
3535
- name: Download artifacts
3636
id: download-artifacts
37-
uses: actions/download-artifact@v4
37+
uses: actions/download-artifact@v7
3838
with:
3939
name: ${{ inputs.download-name }}
4040
merge-multiple: true
@@ -48,7 +48,7 @@ jobs:
4848
chmod +x /tmp/release-binary-destination/${{ github.sha }}/*
4949
ls -lsa /tmp/release-binary-destination/${{ github.sha }}
5050
- name: Upload artifacts
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v6
5252
with:
5353
name: release-binary-${{ inputs.destination }}${{ contains(inputs.source, '-win-') && !endsWith(inputs.destination, '.exe') && '.exe' || '' }}
5454
overwrite: true

.github/workflows/sign-binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: mkdir -p /tmp/sign/${{ github.sha }}
6161
- name: Download binaries
6262
id: download-artifacts
63-
uses: actions/download-artifact@v4
63+
uses: actions/download-artifact@v7
6464
with:
6565
name: ${{ inputs.download-name }}
6666
merge-multiple: true
@@ -85,7 +85,7 @@ jobs:
8585
keylocker-keypair-alias: ${{ secrets.keylocker-keypair-alias }}
8686
options: ${{ runner.os == 'macOS' && '--options runtime --entitlements "$GITHUB_WORKSPACE/entitlements.xml"' || '' }}
8787
- name: Upload signed binaries
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v6
8989
with:
9090
name: signed-${{ inputs.file }}
9191
path: /tmp/sign/${{ github.sha }}/${{ inputs.file }}${{ runner.os == 'Windows' && !endsWith(inputs.file, '.exe') && '.exe' || '' }}

0 commit comments

Comments
 (0)