From 3ed4af4ca6f4a8495619462d64b7c6881d595a10 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 29 Jul 2023 06:36:32 +0700 Subject: [PATCH] Update GitHub Actions CI action versions (#1336) ci: Update GitHub-supplied actions. These are generating warnings in the GitHub Actions UI as they are being forced to use a more current node. Co-authored-by: Bruce Mitchener --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/deploy.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1648e4ce..c181c354 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: SCCACHE_DIR: /var/lib/github-actions/.cache steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: ๐Ÿ”ง Clear wasm-bindgen cache run: rm -r ~/.cache/.wasm-pack @@ -40,9 +40,9 @@ jobs: --- - name: ๐Ÿ”ง Set up Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '16' - name: ๐Ÿšง Install Node dependencies run: | @@ -114,7 +114,7 @@ jobs: # runs-on: self-hosted # # steps: - # - uses: actions/checkout@v2 + # - uses: actions/checkout@v3 # # - name: ๐Ÿงช Run Rust miri # run: | @@ -133,7 +133,7 @@ jobs: continue-on-error: ${{ matrix.checks == 'crate security advisories' }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v1 if: matrix.checks == 'crate security advisories' diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8114ca4b..12514903 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,12 +20,12 @@ jobs: SCCACHE_DIR: /var/lib/github-actions/.cache steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: ๐Ÿ”ง Set up Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '16' - name: ๐Ÿšง Install Node dependencies run: |