diff options
author | Brad Linden <brad@lindenlab.com> | 2024-03-12 17:49:19 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-03-12 17:49:19 -0700 |
commit | 231062d5323eca322c67c7132f96a1d402c0036c (patch) | |
tree | 62ea40431666a18f6215363d233012fa42832f52 /.github/workflows | |
parent | afc943acbc2bb79e2e1aa5d5eaf448e01b6c2b00 (diff) |
Fix github actions dependency deprecations
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 13798fc607..078eb1f1b8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -60,7 +60,7 @@ jobs: ref: ${{ github.event.pull_request.head.sha || github.sha }} - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -81,7 +81,7 @@ jobs: run: pip3 install autobuild llsd - name: Cache autobuild packages - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-installables with: path: .autobuild-installables |