Skip to content

Commit 37b84ef

Browse files
authored
[ci] Fix wrong GitHub Actions hash (#3121)
Release 0.8.45 to test this fix. gherrit-pr-id: Gga7qjmq2iq7jfloo2gir37coepdpzrej
1 parent 4212573 commit 37b84ef

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
run: ./cargo.sh +stable publish --package zerocopy --registry crates-io
140140

141141
- name: Create GitHub Release
142-
uses: softprops/action-gh-release@c062e08bd5704bfa3b69f0c2a9c440319b85f3cf # v2.0.8
142+
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
143143
with:
144144
tag_name: v${{ needs.check-version.outputs.version }}
145145
generate_release_notes: true

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[package]
1616
edition = "2021"
1717
name = "zerocopy"
18-
version = "0.8.44"
18+
version = "0.8.45"
1919
authors = [
2020
"Joshua Liebow-Feeser <joshlf@google.com>",
2121
"Jack Wrenn <jswrenn@amazon.com>",
@@ -112,13 +112,13 @@ __internal_use_only_features_that_work_on_stable = [
112112
]
113113

114114
[dependencies]
115-
zerocopy-derive = { version = "=0.8.44", path = "zerocopy-derive", optional = true }
115+
zerocopy-derive = { version = "=0.8.45", path = "zerocopy-derive", optional = true }
116116

117117
# The "associated proc macro pattern" ensures that the versions of zerocopy and
118118
# zerocopy-derive remain equal, even if the 'derive' feature isn't used.
119119
# See: https://github.com/matklad/macro-dep-test
120120
[target.'cfg(any())'.dependencies]
121-
zerocopy-derive = { version = "=0.8.44", path = "zerocopy-derive" }
121+
zerocopy-derive = { version = "=0.8.45", path = "zerocopy-derive" }
122122

123123
[dev-dependencies]
124124
# FIXME(#381) Remove this dependency once we have our own layout gadgets.
@@ -129,4 +129,4 @@ rustversion = "1.0"
129129
static_assertions = "1.1"
130130
testutil = { path = "testutil" }
131131
# In tests, unlike in production, zerocopy-derive is not optional
132-
zerocopy-derive = { version = "=0.8.44", path = "zerocopy-derive" }
132+
zerocopy-derive = { version = "=0.8.45", path = "zerocopy-derive" }

zerocopy-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[package]
1010
edition = "2021"
1111
name = "zerocopy-derive"
12-
version = "0.8.44"
12+
version = "0.8.45"
1313
authors = ["Joshua Liebow-Feeser <joshlf@google.com>", "Jack Wrenn <jswrenn@amazon.com>"]
1414
description = "Custom derive for traits from the zerocopy crate"
1515
license = "BSD-2-Clause OR Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)