updated github action versions

This commit is contained in:
martin 2024-02-11 11:07:58 +01:00
parent 58cabb97d0
commit 1721e48d84
1 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ jobs:
docker-build: docker-build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v2 - uses: docker/setup-buildx-action@v2
- -
name: Create docker cache folder name: Create docker cache folder
@ -22,7 +22,7 @@ jobs:
- -
name: Restore docker image name: Restore docker image
id: cache-docker id: cache-docker
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: /tmp/docker path: /tmp/docker
key: ${{ runner.os }}-docker-${{ hashFiles('builder.Dockerfile') }} key: ${{ runner.os }}-docker-${{ hashFiles('builder.Dockerfile') }}
@ -40,12 +40,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: docker-build needs: docker-build
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v2 - uses: docker/setup-buildx-action@v2
- -
name: Restore docker image name: Restore docker image
id: cache-docker id: cache-docker
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: /tmp/docker path: /tmp/docker
key: ${{ runner.os }}-docker-${{ hashFiles('builder.Dockerfile') }} key: ${{ runner.os }}-docker-${{ hashFiles('builder.Dockerfile') }}
@ -85,7 +85,7 @@ jobs:
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
- -
name: Archive artifacts name: Archive artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: reports-${{github.run_number}} name: reports-${{github.run_number}}
path: ${{ env.ASSET }} path: ${{ env.ASSET }}