Skip to content

Commit

Permalink
ci: update dependencies (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft authored Jun 6, 2022
1 parent 083e415 commit 496d6aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
rm -f common/docdiff/target/release/docdiff
- name: Cache docdiff
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.3
continue-on-error: true
with:
path: target/release/docdiff
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
rm -f common/duvet/target/release/duvet
- name: Cache duvet
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.3
continue-on-error: true
with:
path: target/release/duvet
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:

- name: Cache quinn
id: cache
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.3
continue-on-error: true
with:
path: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
steps:
- name: Cache
id: cache
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.3
continue-on-error: true
with:
path: tshark
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
submodules: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1.7.0
uses: docker/setup-buildx-action@v2.0.0

- name: Compute tags
id: tags
Expand All @@ -43,14 +43,14 @@ jobs:
echo "::set-output name=tags::${TAGS}"
- name: Login to Amazon Elastic Container Registry Public
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: public.ecr.aws
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Build and push image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
tags: ${{ steps.tags.outputs.tags }}
file: quic/s2n-quic-qns/etc/Dockerfile.build
Expand Down

0 comments on commit 496d6aa

Please sign in to comment.