Skip to content

Commit

Permalink
Update actions/checkout action to v4 (merge commit)
Browse files Browse the repository at this point in the history
Merge branch 'renovate/actions-checkout-4.x' into 'main'
* Update actions/checkout action to v4

See merge request https://gitlab.ci.csc.fi/sds-dev/sd-submit/metadata-submitter-frontend/-/merge_requests/919

Approved-by: Stefan Negru <[email protected]>
Co-authored-by: renovate-bot <[email protected]>
Merged by Stefan Negru <[email protected]>
  • Loading branch information
blankdots committed Feb 7, 2024
2 parents 530cd16 + a3107da commit 44e6f77
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node: ["16"]
name: ESLint check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2etests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node: ["16"]
browser: ["firefox", "chrome"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Frontend
run: |
npx --quiet pinst --disable
Expand All @@ -24,7 +24,7 @@ jobs:
echo "VERSION=develop" >> $GITHUB_ENV
fi
- name: Clone backend
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'CSCfi/metadata-submitter'
path: metadata-submitter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatstyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node: ["16"]
name: Prettier check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node: ["16"]
name: TypeScript check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
node: ["16"]
name: Jest unit tests and coveralls push
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 44e6f77

Please sign in to comment.