Skip to content

Commit d9b9ee9

Browse files
author
Joseph Hamman
committed
Merge branch 'main' of github.com:carbonplan/xarray-schema
2 parents 73a86a0 + 87a0d53 commit d9b9ee9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/main.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
matrix:
1717
python-version: [3.8, 3.9]
1818
steps:
19-
- uses: actions/checkout@v2.4.0
19+
- uses: actions/checkout@v3
2020
- name: Setup Python
21-
uses: actions/setup-python@v2.3.1
21+
uses: actions/setup-python@v3.1.0
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
architecture: x64
25-
- uses: actions/cache@v2.1.7
25+
- uses: actions/cache@v3.0.1
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}
@@ -49,13 +49,13 @@ jobs:
4949
matrix:
5050
python-version: [3.9]
5151
steps:
52-
- uses: actions/checkout@v2.4.0
52+
- uses: actions/checkout@v3
5353
- name: Setup Python
54-
uses: actions/setup-python@v2.3.1
54+
uses: actions/setup-python@v3.1.0
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
architecture: x64
58-
- uses: actions/cache@v2.1.7
58+
- uses: actions/cache@v3.0.1
5959
with:
6060
path: ~/.cache/pip
6161
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}

.github/workflows/pypipublish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2.4.0
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v2.3.1
13+
uses: actions/setup-python@v3.1.0
1414
with:
1515
python-version: "3.x"
1616
- name: Install dependencies

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.0.1
3+
rev: v4.1.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
@@ -10,7 +10,7 @@ repos:
1010
- id: double-quote-string-fixer
1111

1212
- repo: https://github.com/psf/black
13-
rev: 21.12b0
13+
rev: 22.3.0
1414
hooks:
1515
- id: black
1616
args: ["--line-length", "100", "--skip-string-normalization"]
@@ -29,7 +29,7 @@ repos:
2929
- id: isort
3030

3131
- repo: https://github.com/pre-commit/mirrors-prettier
32-
rev: v2.5.1
32+
rev: v2.6.2
3333
hooks:
3434
- id: prettier
3535
language_version: system

0 commit comments

Comments
 (0)