-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump docker/setup-buildx-action from 2.5.0 to 3.2.0 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.5.0 to 3.2.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v2.5.0...v3.2.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.1 Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.1. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](styfle/cancel-workflow-action@0.11.0...0.12.1) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump peter-evans/create-pull-request from 5 to 6 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 5 to 6. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v5...v6) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Bump peter-evans/create-issue-from-file from 3 to 5 Bumps [peter-evans/create-issue-from-file](https://github.com/peter-evans/create-issue-from-file) from 3 to 5. - [Release notes](https://github.com/peter-evans/create-issue-from-file/releases) - [Commits](peter-evans/create-issue-from-file@v3...v5) --- updated-dependencies: - dependency-name: peter-evans/create-issue-from-file dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(ci): Migrate upload/download artifact action to V4 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
bb42fd2
commit 42659f6
Showing
12 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -297,12 +297,12 @@ jobs: | |
- name: Cargo build | ||
uses: ./.github/workflow-templates/cargo-build | ||
- name: Upload runtimes | ||
uses: actions/upload-artifact@v3.1.2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: runtimes | ||
path: runtimes | ||
- name: Upload binary | ||
uses: actions/upload-artifact@v3.1.2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: build | ||
|
@@ -367,7 +367,7 @@ jobs: | |
- run: | | ||
mkdir -p target/release | ||
- name: "Download branch built node" | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: target/release | ||
|
@@ -411,7 +411,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- uses: actions/download-artifact@v3.0.2 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: build | ||
|
@@ -428,7 +428,7 @@ jobs: | |
- run: | | ||
mkdir -p target/release | ||
- name: "Download branch built node" | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: target/release | ||
|
@@ -469,7 +469,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ needs.set-tags.outputs.git_ref }} | ||
- uses: actions/download-artifact@v3.0.2 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: build | ||
|
@@ -483,7 +483,7 @@ jobs: | |
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2.5.0 | ||
uses: docker/setup-buildx-action@v3.2.0 | ||
with: | ||
version: latest | ||
driver-opts: | | ||
|
@@ -551,7 +551,7 @@ jobs: | |
mkdir -p target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
mkdir -p test/tmp/node_logs | ||
- name: "Download runtime" | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: runtimes | ||
path: target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
|
@@ -597,12 +597,12 @@ jobs: | |
mkdir -p target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
mkdir -p test/tmp | ||
- name: "Download branch built runtime" | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: runtimes | ||
path: target/release/wbuild/${{ matrix.chain }}-runtime/ | ||
- name: "Download branch built node" | ||
uses: actions/download-artifact@v3.0.2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: moonbeam | ||
path: target/release | ||
|
@@ -654,7 +654,7 @@ jobs: | |
MOST_RECENT_ZOMBIE_DIR=$(ls -td /tmp/zombie-* | head -n 1) | ||
find $MOST_RECENT_ZOMBIE_DIR -maxdepth 1 -type f -name '*.log' -exec zip -r $NODE_LOGS_ZIP {} \; | ||
echo "NODE_LOGS_ZIP=${NODE_LOGS_ZIP}" >> $GITHUB_ENV | ||
- uses: actions/upload-artifact@v3.1.2 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: failed-node-logs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters