Skip to content

Commit bb43557

Browse files
authored
ci: fix outdated gh action (#1118)
the pipeline did not run anymore since the actions we used were too old
1 parent 6812c0f commit bb43557

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020

2121
steps:
2222

23-
- uses: actions/checkout@v1
24-
- uses: actions/setup-node@v1
23+
- uses: actions/checkout@v4
24+
- uses: actions/setup-node@v4
2525
- uses: ruby/setup-ruby@v1
2626
with:
2727
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
@@ -30,7 +30,7 @@ jobs:
3030
- name: Get yarn cache
3131
id: yarn-cache
3232
run: echo "::set-output name=dir::$(yarn cache dir)"
33-
- uses: actions/cache@v1
33+
- uses: actions/cache@v4
3434
with:
3535
path: ${{ steps.yarn-cache.outputs.dir }}
3636
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)