aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/doc.yml2
-rw-r--r--.github/workflows/rust.yml10
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index 411b7589f..b4e225e64 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -29,7 +29,7 @@ jobs:
29 concurrency: doc-${{ matrix.crates }} 29 concurrency: doc-${{ matrix.crates }}
30 30
31 steps: 31 steps:
32 - uses: actions/checkout@v2 32 - uses: actions/checkout@v3
33 with: 33 with:
34 submodules: true 34 submodules: true
35 - name: Install Rust targets 35 - name: Install Rust targets
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 79354fe70..47dc8fd7a 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -22,11 +22,11 @@ jobs:
22 id-token: write 22 id-token: write
23 contents: read 23 contents: read
24 steps: 24 steps:
25 - uses: actions/checkout@v2 25 - uses: actions/checkout@v3
26 with: 26 with:
27 submodules: true 27 submodules: true
28 - name: Cache multiple paths 28 - name: Cache multiple paths
29 uses: actions/cache@v2 29 uses: actions/cache@v3
30 with: 30 with:
31 path: | 31 path: |
32 ~/.cargo/bin/ 32 ~/.cargo/bin/
@@ -44,11 +44,11 @@ jobs:
44 build-stable: 44 build-stable:
45 runs-on: ubuntu-latest 45 runs-on: ubuntu-latest
46 steps: 46 steps:
47 - uses: actions/checkout@v2 47 - uses: actions/checkout@v3
48 with: 48 with:
49 submodules: true 49 submodules: true
50 - name: Cache multiple paths 50 - name: Cache multiple paths
51 uses: actions/cache@v2 51 uses: actions/cache@v3
52 with: 52 with:
53 path: | 53 path: |
54 ~/.cargo/bin/ 54 ~/.cargo/bin/
@@ -67,7 +67,7 @@ jobs:
67 test: 67 test:
68 runs-on: ubuntu-latest 68 runs-on: ubuntu-latest
69 steps: 69 steps:
70 - uses: actions/checkout@v2 70 - uses: actions/checkout@v3
71 71
72 - name: Test boot 72 - name: Test boot
73 working-directory: ./embassy-boot/boot 73 working-directory: ./embassy-boot/boot