diff options
author | K.B.Dharun Krishna <kbdharunkrishna@gmail.com> | 2023-05-10 19:06:40 +0530 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-05-22 01:16:46 +0300 |
commit | 9fbc5b618b7579d537a59612a9b0bb6f26c4eb78 (patch) | |
tree | 6e2c4237ccbca779d7ef9b7ba5eed6543745be51 | |
parent | 88ae51858031cf02d10edaeda35a69ea697d3de3 (diff) | |
download | alacritty-9fbc5b618b7579d537a59612a9b0bb6f26c4eb78.tar.gz alacritty-9fbc5b618b7579d537a59612a9b0bb6f26c4eb78.zip |
Bump `actions/checkout` to v3
Fix Node 12 deprecation warnings in action runs.
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 652e65aa..5d4dc9ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Stable run: cargo test - name: Oldstable @@ -28,7 +28,7 @@ jobs: check-macos-arm: runs-on: macos-11 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install target run: rustup update && rustup target add aarch64-apple-darwin - name: Build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d16087b..1b911d96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: runs-on: macos-11 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install ARM target run: rustup update && rustup target add aarch64-apple-darwin - name: Test @@ -35,7 +35,7 @@ jobs: shell: bash steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Test run: cargo test --release - name: Build @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | sudo apt-get install cmake pkg-config libfreetype6-dev libfontconfig1-dev \ |