diff options
author | Loïc Hoguin <[email protected]> | 2024-01-26 12:35:25 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-01-26 13:43:11 +0100 |
commit | a0314a6dff2f50f8cf21cd5ff0ca33b27355baf4 (patch) | |
tree | 462716503e1eb0b91e2e9ac958753bafcf3bcdd5 /.github/workflows | |
parent | 7d3aa6c9dd9ed6ae6aa769e54e139ec8ff7a49cf (diff) | |
download | cowboy-a0314a6dff2f50f8cf21cd5ff0ca33b27355baf4.tar.gz cowboy-a0314a6dff2f50f8cf21cd5ff0ca33b27355baf4.tar.bz2 cowboy-a0314a6dff2f50f8cf21cd5ff0ca33b27355baf4.zip |
Don't use specific actions versions and update cache to v4
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b6443f0..7d5231f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Output latest Erlang/OTP version id: latest_version @@ -58,7 +58,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Restore CI cache - uses: actions/cache/[email protected] + uses: actions/cache/restore@v4 with: path: | ~/erlang/ |