We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce30539 commit 32af057Copy full SHA for 32af057
.github/workflows/build.yml
@@ -12,6 +12,11 @@ on:
12
permissions:
13
contents: write
14
15
+# Construct a concurrency group to be shared across workflow runs.
16
+# The default behavior ensures that only one is running at a time, with
17
+# all others queuing and thus not interrupting runs that are in-flight.
18
+concurrency: ${{ github.workflow }}
19
+
20
env:
21
PROGRAM_NAME: trigger-sqs
22
@@ -33,7 +38,7 @@ jobs:
33
38
- name: Install Rust
34
39
uses: dtolnay/rust-toolchain@stable
35
40
with:
36
- toolchain: 1.79
41
+ toolchain: 1.81
37
42
targets: ${{ matrix.config.target }}
43
- name: Install Spin
44
uses: rajatjindal/setup-actions/spin@main
0 commit comments