Skip to content

Commit

Permalink
ci: upgrade actions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinganix authored Jan 28, 2024
1 parent bdfb55f commit bccfc87
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 20
- name: Build with Gradle
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 20
- name: Build with Gradle
Expand Down
4 changes: 2 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Guess

The source code of the 'Guess Who I Am' Wechat miniprogram.
The source code of the 'Guess Who I Am' Wechat miniprogram, you can [scan to experience](#qr-code) the miniprogram

- Frontend development using `TypeScript` with `webpack` for building and bundling
- Backend development using `Java` and `Spring` framework with `Gradle` for building and packaging
Expand Down Expand Up @@ -76,7 +76,7 @@ npm start

<img src="docs/devtools.setting.png" alt="Image" width="320" height="484">

## Scan to experience
## <a id="qr-code"></a>Scan to experience

<img src="docs/qrcode.jpg" alt="Image" width="240" height="240">

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# 猜我是谁

`猜我是谁`微信小程序源码
本仓库是《猜我是谁》微信小程序的源码,你可以[扫码体验](#qr-code)此小程序

- 前端使用`Typescript`开发,用`webpack`构建打包
- 后端使用`Java``Spring`框架开发,用`gradle`构建打包
Expand Down Expand Up @@ -76,10 +76,10 @@ npm start

<img src="docs/devtools.setting.png" alt="Image" width="320" height="484">

## 扫码体验
## <a id="qr-code"></a>扫码体验

<img src="docs/qrcode.jpg" alt="Image" width="240" height="240">

## 贡献

如果你有兴趣报告/修复问题并直接为代码库做出贡献,请查看 [CONTRIBUTING.md](CONTRIBUTING.md) 获取更多信息,了解我们期望的贡献内容以及如何开始
如果你有兴趣报告/修复问题并直接为代码库做出贡献,请查看 [CONTRIBUTING.md](CONTRIBUTING.md) 获取更多信息,了解我们期望的贡献内容以及如何开始

0 comments on commit bccfc87

Please sign in to comment.