Skip to content

Commit a78f614

Browse files
committed
Update deps
1 parent 60f1006 commit a78f614

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1450
-1144
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- uses: actions-rs/toolchain@v1
1818
with:
1919
toolchain: stable

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
cover:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v3
1313
- uses: actions-rs/toolchain@v1
1414
with:
1515
toolchain: stable

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Get version
1515
run: echo PACKAGE_VERSION=$(sed -nE 's/^\s*version = "(.*?)"/\1/p' Cargo.toml) >> $GITHUB_ENV
1616
-
1717
name: Login to DockerHub
18-
uses: docker/login-action@v1
18+
uses: docker/login-action@v3
1919
with:
2020
username: ${{ secrets.DOCKER_USER }}
2121
password: ${{ secrets.DOCKER_TOKEN }}
2222
- name: Build and push
23-
uses: docker/build-push-action@v2
23+
uses: docker/build-push-action@v5
2424
with:
2525
push: true
2626
context: .
@@ -36,22 +36,22 @@ jobs:
3636
needs: graphgate-docker
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
-
4141
name: Login to DockerHub
42-
uses: docker/login-action@v1
42+
uses: docker/login-action@v3
4343
with:
4444
username: ${{ secrets.DOCKER_USER }}
4545
password: ${{ secrets.DOCKER_TOKEN }}
4646
- name: Build and push ${{ matrix.package.name }}
47-
uses: docker/build-push-action@v2
47+
uses: docker/build-push-action@v5
4848
with:
4949
push: true
5050
context: .
5151
file: Dockerfile-examples
5252
tags: scott829/graphgate-examples:latest
5353
- name: Deploy to Kubernetes
54-
uses: WyriHaximus/github-action-helm3@v2
54+
uses: WyriHaximus/github-action-helm3@v3
5555
with:
5656
kubeconfig: '${{ secrets.K8S_CONFIG }}'
5757
exec: |
@@ -62,15 +62,15 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- name: Checkout
65-
uses: actions/checkout@v2
65+
uses: actions/checkout@v3
6666
-
6767
name: Login to DockerHub
68-
uses: docker/login-action@v1
68+
uses: docker/login-action@v3
6969
with:
7070
username: ${{ secrets.DOCKER_USER }}
7171
password: ${{ secrets.DOCKER_TOKEN }}
7272
- name: Build and push ${{ matrix.package.name }}
73-
uses: docker/build-push-action@v2
73+
uses: docker/build-push-action@v5
7474
with:
7575
push: true
7676
context: .
@@ -101,7 +101,7 @@ jobs:
101101
path: .
102102
steps:
103103
- name: Checkout
104-
uses: actions/checkout@v2
104+
uses: actions/checkout@v3
105105
- name: get version
106106
working-directory: ${{ matrix.package.path }}
107107
run: echo PACKAGE_VERSION=$(sed -nE 's/^\s*version = "(.*?)"/\1/p' Cargo.toml) >> $GITHUB_ENV

0 commit comments

Comments
 (0)