From 14a38e12b78c857ebb01ffb724ab604ca9ffdc38 Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Sat, 10 Dec 2022 07:58:35 +0000 Subject: [PATCH] Upgrade GitHub actions packages in release workflow Resolve NodeJS 12 and command deprecation warnings by upgrading docker/setup-buildx-action and crazy-max/ghaction-github-runtime packages. Signed-off-by: Austin Vazquez --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3079d90cc..b081f7c1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,10 +97,10 @@ jobs: path: src/github.com/containerd/containerd - name: Setup buildx instance - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 with: use: true - - uses: crazy-max/ghaction-github-runtime@v1 # sets up needed vars for caching to github + - uses: crazy-max/ghaction-github-runtime@v2 # sets up needed vars for caching to github - name: Make shell: bash run: | @@ -135,7 +135,7 @@ jobs: needs: [build, check] steps: - name: Download builds and release notes - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: path: builds - name: Create Release