Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 2 to 3 #5

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/colima-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v2

- name: Homebrew cache/restore
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-homebrew-cache
with:
Expand All @@ -66,7 +66,7 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}

- name: Lima cache/restore
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-lima
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/master-build.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:


- name: save build results to cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .gotmp/bin
key: ${{ github.sha }}-${{ github.ref }}-build-most
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
ddev config global --instrumentation-opt-in=false

- name: Cache signed binaries
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .gotmp/bin/windows_amd64
key: ${{ github.sha }}-${{ github.ref }}-signed-windows-binaries
Expand All @@ -113,7 +113,7 @@ jobs:
go-version: 1.*

- name: restore build-most results from cache
uses: actions/cache@v2
uses: actions/cache@v3
id: buildmost
with:
path: .gotmp/bin
Expand All @@ -137,7 +137,7 @@ jobs:
curl -sSL -f https://raw.githubusercontent.com/drud/signing_tools/master/macos_notarize.sh | bash -s - --app-specific-password=${DDEV_MACOS_APP_PASSWORD} [email protected] --primary-bundle-id=com.ddev.ddev --target-binary="${item}"
done
- name: Save notarized binaries to cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .gotmp/bin/darwin*
key: ${{ github.sha }}-${{ github.ref }}-notarize-macos
Expand All @@ -160,7 +160,7 @@ jobs:
# We need to get all branches and tags for git describe to work properly
fetch-depth: 0
- name: Restore build-most builds
uses: actions/cache@v2
uses: actions/cache@v3
id: buildmost
with:
path: .gotmp/bin
Expand All @@ -170,7 +170,7 @@ jobs:
run: exit 1

- name: Restore Signed Windows artifacts
uses: actions/cache@v2
uses: actions/cache@v3
id: signedwindows
with:
path: .gotmp/bin/windows_amd64
Expand All @@ -180,7 +180,7 @@ jobs:
run: exit 1

- name: Restore Signed Mac artifacts
uses: actions/cache@v2
uses: actions/cache@v3
id: notarizedmac
with:
path: .gotmp/bin/darwin*
Expand Down