diff options
author | Ayke van Laethem <[email protected]> | 2023-02-02 18:54:36 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-02-07 22:00:21 +0100 |
commit | 1f0bf9ba631b22d3af59b0a63f41f6438e4d5fb5 (patch) | |
tree | 45f61611d36c4cd8f6c86b143bf987d380672bd4 /.github/workflows/build-macos.yml | |
parent | 0b0ae19656b6f3548b69f4d76b8c1371ffd183db (diff) | |
download | tinygo-1f0bf9ba631b22d3af59b0a63f41f6438e4d5fb5.tar.gz tinygo-1f0bf9ba631b22d3af59b0a63f41f6438e4d5fb5.zip |
ci: switch to actions/checkout@v3
I saw the following warning on GitHub Actions:
Node.js 12 actions are deprecated. Please update the following
actions to use Node.js 16: actions/checkout@v2. For more information
see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
Updating seems quite reasonable to me.
Diffstat (limited to '.github/workflows/build-macos.yml')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index e17dcfa04..39789137d 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -103,7 +103,7 @@ jobs: run: | HOMEBREW_NO_AUTO_UPDATE=1 brew install llvm@15 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Go uses: actions/setup-go@v3 with: |