diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 45b9f57..82a7f31 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 @@ -69,7 +69,7 @@ jobs: echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache #key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 4be3c27..e68dfc6 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -66,7 +66,7 @@ jobs: echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache #key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }} diff --git a/.github/workflows/tags.yml b/.github/workflows/tags.yml index e71527a..8c9339b 100644 --- a/.github/workflows/tags.yml +++ b/.github/workflows/tags.yml @@ -10,12 +10,12 @@ jobs: steps: - name: Checkout tag - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Checkout gh-pages - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: "gh-pages" path: "gh-pages" @@ -69,7 +69,7 @@ jobs: echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache #key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }}