Skip to content

Commit

Permalink
Update github actions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marteinn committed Oct 30, 2023
1 parent 23364c5 commit 3706227
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: "actions/setup-python@v2"
- uses: actions/checkout@v4
- uses: "actions/setup-python@v4"
with:
python-version: "3.10"
- name: Install cookiecutter
Expand All @@ -18,7 +18,7 @@ jobs:
rm -rf Company-Project
cookiecutter . --no-input
- name: Archive generated-project
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: generated-project
path: ./Company-Project
Expand All @@ -28,10 +28,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- run: rm -rf Company-Project
- name: Restore generated-project
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: generated-project
path: Company-Project
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: "actions/setup-node@v2"
- uses: actions/checkout@v4
- uses: "actions/setup-node@v4"
with:
node-version: "20"
- run: rm -rf Company-Project
- name: Restore generated-project
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: generated-project
path: Company-Project
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fix issue with custom serializer not being applied (@saraojelind, @marteinn)
- Rename test in page test template so it drops wording react_representation (@marteinn)
- Upgrade github actions (@marteinn)
- Upgrade storybook to 7.5.2
- Upgrade sentry/nextjs to 7.76.0
- Upgrade eslint-config-next to 14.0.0
Expand Down

0 comments on commit 3706227

Please sign in to comment.