Skip to content

Commit 63ab7b9

Browse files
Build(deps): Bump actions/download-artifact from 5 to 6
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 682fbd6 commit 63ab7b9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
run: gh release create ${{ github.ref }} -F ReleaseNote.md
3131

3232
- name: Download cobj.exe
33-
uses: actions/download-artifact@v5
33+
uses: actions/download-artifact@v6
3434
with:
3535
name: cobj.exe
3636

3737
- name: Download libcobj.jar
38-
uses: actions/download-artifact@v5
38+
uses: actions/download-artifact@v6
3939
with:
4040
name: libcobj.jar
4141

.github/workflows/test-cobj-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Get the artifact name
2727
run: echo "ARTIFACT_NAME=${{ inputs.os }}" | sed 's/:/-/g' >> "$GITHUB_ENV"
2828

29-
- uses: actions/download-artifact@v5
29+
- uses: actions/download-artifact@v6
3030
with:
3131
name: opensourcecobol4j-${{ env.ARTIFACT_NAME }}-opt_${{ inputs.configure-args }}
3232

.github/workflows/test-nist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Get the artifact name
3333
run: echo "ARTIFACT_NAME=${{ inputs.os }}" | sed 's/:/-/g' >> "$GITHUB_ENV"
3434

35-
- uses: actions/download-artifact@v5
35+
- uses: actions/download-artifact@v6
3636
with:
3737
name: opensourcecobol4j-${{ env.ARTIFACT_NAME }}-opt_${{ inputs.configure-args }}
3838

.github/workflows/test-other.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Get the artifact name
3030
run: echo "ARTIFACT_NAME=${{ inputs.os }}" | sed 's/:/-/g' >> "$GITHUB_ENV"
3131

32-
- uses: actions/download-artifact@v5
32+
- uses: actions/download-artifact@v6
3333
with:
3434
name: opensourcecobol4j-${{ env.ARTIFACT_NAME }}-opt_${{ inputs.configure-args }}
3535

.github/workflows/windows-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
- uses: actions/checkout@v5
1616

1717
- name: Download libcobj.jar
18-
uses: actions/download-artifact@v5
18+
uses: actions/download-artifact@v6
1919
with:
2020
name: libcobj.jar
2121
path: libcobj/app/build/libs/
2222

2323
- name: Download cobj.exe
24-
uses: actions/download-artifact@v5
24+
uses: actions/download-artifact@v6
2525
with:
2626
name: cobj.exe
2727
path: win/x64/Release/

0 commit comments

Comments
 (0)