We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451c50d commit 6957541Copy full SHA for 6957541
.github/workflows/e2e_tests.yml
@@ -27,7 +27,7 @@ jobs:
27
28
env:
29
DOCKER_IMAGE: "ghcr.io/getsentry/sentry-ruby-devcontainer-3.4"
30
- DOCKER_TAG: "c7f73e278f0f8ad6035d578685e7bfb34be5eb4c"
+ DOCKER_TAG: "latest"
31
32
steps:
33
- name: Checkout code
@@ -50,9 +50,9 @@ jobs:
50
uses: actions/cache@v3
51
with:
52
path: spec/apps/svelte-mini/node_modules
53
- key: ${{ runner.os }}-node-modules-${{ hashFiles('spec/apps/svelte-mini/package-lock.json') }}
+ key: ${{ runner.os }}-${{ runner.arch }}-node-modules-${{ hashFiles('spec/apps/svelte-mini/package-lock.json') }}
54
restore-keys: |
55
- ${{ runner.os }}-node-modules-
+ ${{ runner.os }}-${{ runner.arch }}-node-modules-
56
57
- name: Set up test container
58
run: |
0 commit comments