Skip to content

Commit

Permalink
chore: fix workflow versions
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-run committed Apr 29, 2024
1 parent 6a223d3 commit 1c66c4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
if: "!contains(github.event.head_commit.message, '[docs]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: 'https://npm.pkg.github.com'
scope: '@navikt'
- uses: actions/cache@v3
- uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
Expand All @@ -41,9 +41,9 @@ jobs:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
Expand Down

0 comments on commit 1c66c4f

Please sign in to comment.