Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
uses: actions/checkout@v5

- name: Download configuration file artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-install-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

steps:
- name: Download script artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.SCRIPT_ARTIFACT_NAME }}

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
echo "BINDIR=${{ runner.temp }}/custom-installation-folder" >>"$GITHUB_ENV"

- name: Download script artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.SCRIPT_ARTIFACT_NAME }}

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

steps:
- name: Download script artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.SCRIPT_ARTIFACT_NAME }}

Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

steps:
- name: Download script artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.SCRIPT_ARTIFACT_NAME }}

Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
echo "SECOND_BINDIR=${{ runner.temp }}/${SECOND_INSTALLATION_FOLDER}" >>"$GITHUB_ENV"

- name: Download script artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.SCRIPT_ARTIFACT_NAME }}

Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/publish-go-nightly-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: ${{ env.ARTIFACT_PREFIX }}*
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/publish-go-tester-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:

steps:
- name: Download build artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6

- name: Create checksum file
run: |
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/release-go-crosscompile-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true
path: ${{ env.DIST_DIR }}
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/release-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: ${{ env.ARTIFACT_PREFIX }}*
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
uses: actions/checkout@v5

- name: Download configuration file artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
uses: actions/checkout@v5

- name: Download configuration file artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*
Expand Down
Loading