From 1eb8cd06c73820197d8060049994e09edc3ffc6b Mon Sep 17 00:00:00 2001 From: rudy Date: Wed, 19 Oct 2022 15:37:44 +0200 Subject: [PATCH] fix(ci): update action to last version to avoid deprecation warnings --- .github/workflows/compiler.yml | 6 +++--- .github/workflows/setup/action.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compiler.yml b/.github/workflows/compiler.yml index b30b2fc6a..d7b49c739 100644 --- a/.github/workflows/compiler.yml +++ b/.github/workflows/compiler.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Detect changes on API to compiler - uses: tj-actions/changed-files@v19 + uses: tj-actions/changed-files@v32 id: interface-changes with: files: | @@ -33,7 +33,7 @@ jobs: steps: # A SSH private key is required as some dependencies are from private repos - name: Set ssh keys - uses: webfactory/ssh-agent@v0.5.2 + uses: webfactory/ssh-agent@v0.6.0 with: ssh-private-key: ${{ secrets.CONCRETE_COMPILER_CI_SSH_PRIVATE }} @@ -55,7 +55,7 @@ jobs: toolchain: stable - name: Download cargo cache - uses: Swatinem/rust-cache@v1 + uses: Swatinem/rust-cache@v2 - name: Concrete-Optimizer run: | diff --git a/.github/workflows/setup/action.yml b/.github/workflows/setup/action.yml index cd47d3aa8..8e0b1814c 100644 --- a/.github/workflows/setup/action.yml +++ b/.github/workflows/setup/action.yml @@ -12,10 +12,10 @@ runs: toolchain: stable - name: Download cargo cache - uses: Swatinem/rust-cache@v1 + uses: Swatinem/rust-cache@v2 # A SSH private key is required as some dependencies are from private repos - name: Set ssh keys - uses: webfactory/ssh-agent@v0.5.2 + uses: webfactory/ssh-agent@v0.6.0 with: ssh-private-key: ${{ inputs.ssh_private_key }}