Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,31 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.rust_stable }}

- name: Cache cargo registry
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-

- name: Cache cargo index
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-index-

- name: Cache cargo build
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target1-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -68,7 +68,7 @@ jobs:
args: --all-targets --all-features --workspace -- -D warnings

- name: Cache vcpkg's artifacts
uses: actions/cache@v1
uses: actions/cache@v4
if: matrix.os == 'windows-latest'
with:
path: c:/vcpkg/installed
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create Release
uses: actions/github-script@v3.0
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- name: Install Musl
run: sudo apt-get install -y musl-tools musl autoconf gperf libtool automake
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Make
run: |
musl-gcc -v
Expand All @@ -75,7 +75,7 @@ jobs:
env:
OPENSSL_STATIC: 1
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/download-artifact@v4
Expand All @@ -99,7 +99,7 @@ jobs:
sudo apt-get install -y musl-tools musl
- name: Get upload url
id: release_upload_url
uses: actions/github-script@0.9.0
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
result-encoding: string
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
steps:
- name: Get upload url
id: release_upload_url
uses: actions/github-script@0.9.0
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
result-encoding: string
Expand All @@ -179,7 +179,7 @@ jobs:
console.log(release.data.upload_url);
return release.data.upload_url
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ya-runtime-vm"
version = "0.5.2"
version = "0.5.3"
authors = ["Golem Factory <contact@golem.network>"]
edition = "2021"
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion runtime/init-container/src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ static noreturn void child_wrapper(int parent_pipe[2],
/* If execve returns we know an error happened. */
(void)execve(new_proc_args->bin,
new_proc_args->argv,
new_proc_args->envp ? NULL : environ);
new_proc_args->envp ? new_proc_args->envp : environ);

out:
if (child_pipe != -1)
Expand Down
Loading