Skip to content

Update GitHub actions versions #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push, pull_request]

env:
minrust: 1.61.0
minrust: 1.62.0

jobs:
test:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Setup cache
if: runner.os != 'macOS'
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -70,7 +70,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -81,7 +81,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -96,7 +96,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain (${{ env.minrust }})
id: tc
Expand All @@ -107,7 +107,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -123,7 +123,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -134,7 +134,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install stable toolchain
id: toolchain
Expand All @@ -24,7 +24,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '0 2 * * *'

env:
minrust: 1.61.0
minrust: 1.62.0

jobs:
test:
Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Setup cache
if: runner.os != 'macOS'
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -68,7 +68,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -87,7 +87,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -98,7 +98,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -113,7 +113,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain (${{ env.minrust }})
id: tc
Expand All @@ -124,7 +124,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -140,7 +140,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install toolchain
id: tc
Expand All @@ -151,7 +151,7 @@ jobs:
override: true

- name: Setup cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "serde-aux"
version = "4.6.0"
version = "4.7.0"
authors = ["Victor Polevoy <[email protected]>"]
description = "A serde crate's auxiliary library"
readme = "README.md"
license = "MIT"
keywords = ["serde", "serialization", "deserialization"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.62"
repository = "https://github.com/iddm/serde-aux"
documentation = "https://docs.rs/serde-aux"

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The minimal rust version the library supports:
- Since `3.0.0` - rustc `1.56`.
- Since `4.3.0` - rustc `1.57`.
- Since `4.5.1` - rustc `1.61`.
- Since `4.7.0` - rustc `1.62`.

## License
This project is [licensed under the MIT license](https://github.com/iddm/serde-aux/blob/master/LICENSE).
Loading