@@ -66,22 +66,22 @@ jobs:
6666 # TODO: rustup target add aarch64-unknown-linux-gnu
6767 # Linting tools
6868 cargo install cargo-shear
69- cargo fetch --locked
69+ cargo fetch
7070
7171 - name : Build
7272 id : build
7373 if : always()
74- run : cargo build --profile ${{ env.build-type }} --locked
74+ run : cargo build --profile ${{ env.build-type }}
7575
7676 - name : Tests
7777 id : tests
7878 if : always()
79- run : cargo test --profile ${{ env.build-type }} --locked
79+ run : cargo test --profile ${{ env.build-type }}
8080
8181 - name : Clippy
8282 id : clippy
8383 if : always()
84- run : cargo clippy --profile ${{ env.build-type }} --no-deps --locked -- --deny warnings
84+ run : cargo clippy --profile ${{ env.build-type }} --no-deps -- --deny warnings
8585
8686 - name : Format
8787 id : format
9393 if : always()
9494 env :
9595 CARGO_BUILD_RUSTDOCFLAGS : " --deny warnings"
96- run : cargo doc --profile ${{ env.build-type }} --document-private-items --no-deps --locked
96+ run : cargo doc --profile ${{ env.build-type }} --document-private-items --no-deps
9797
9898 - name : Shear
9999 if : always()
@@ -114,16 +114,16 @@ jobs:
114114 fi
115115
116116 artifact_x86=linux-enable-ir-emitter-${version}-${buildtype}-x86-64.tar.gz
117- echo "ARTIFACT_X86=$artifact_x86" >> "$GITHUB_ENV "
117+ echo "ARTIFACT_X86=$artifact_x86" >> "$GITHUB_OUTPUT "
118118 tar -czvf ${artifact_x86} -C target/${buildtype} linux-enable-ir-emitter
119119
120120 - name : Upload x86
121121 id : upload-x86
122122 if : ${{ steps.build.outcome == 'success' }}
123123 uses : actions/upload-artifact@v6
124124 with :
125- name : ${{ env .ARTIFACT_X86 }}
126- path : ${{ env .ARTIFACT_X86 }}
125+ name : ${{ steps.create-artifacts.outputs .ARTIFACT_X86 }}
126+ path : ${{ steps.create-artifacts.outputs .ARTIFACT_X86 }}
127127 if-no-files-found : error
128128
129129 - name : Save cached cargo dependencies
0 commit comments