Skip to content

Commit 8594885

Browse files
committed
ci: update actions and MSRV
1 parent 02b6985 commit 8594885

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
strategy:
2020
matrix:
2121
toolchain:
22-
- 1.80.0 # MSRV
22+
- 1.90.0 # MSRV
2323
- stable
2424
- nightly
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout
2828

2929
- name: Install tools
3030
run: |
@@ -52,7 +52,7 @@ jobs:
5252
run: cargo clippy --all-targets -- -D warnings
5353

5454
- name: Run tests
55-
run: cargo test -p source_gen -p poc-plpgsql-analyzer --features coverage-tests
55+
run: cargo test -p source_gen -p poc-plpgsql-analyzer --features coverage-tests
5656

5757
- name: Generate rustdoc
5858
run: cargo doc --no-deps
@@ -64,7 +64,7 @@ jobs:
6464
timeout-minutes: 15
6565

6666
steps:
67-
- uses: actions/checkout@v3
67+
- uses: actions/checkout
6868

6969
- name: Install tools
7070
run: |
@@ -92,7 +92,7 @@ jobs:
9292
- name: Build using wasm-pack
9393
run: wasm-pack build --release --target nodejs
9494

95-
- uses: actions/upload-artifact@v3
95+
- uses: actions/upload-artifact
9696
with:
9797
name: wasm-library
9898
path: pkg/

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 15
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout
2424

2525
- name: Setup Node
2626
uses: actions/setup-node@v3

.github/workflows/typescript-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 15
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout
2222

2323
- name: Install tools
2424
run: |

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To contribute to this project, follow these steps:
5656
5757
## Requirements
5858
59-
* A working Rust toolchain using [rustup](https://rustup.rs/) (at least 1.80.0)
59+
* A working Rust toolchain using [rustup](https://rustup.rs/) (at least 1.90.0)
6060
* [`wasm-pack`](https://rustwasm.github.io/wasm-pack/installer/) (for building WebAssembly)
6161
6262
## Getting started

0 commit comments

Comments
 (0)