Skip to content

Commit e8b44fd

Browse files
authored
Merge pull request #301 from oasisprotocol/renovate/major-ci-github-actions
Update CI github-actions (major)
2 parents e28fb56 + e2141b9 commit e8b44fd

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
submodules: true
2424
- name: Set up Node.js 20
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v5
2626
with:
2727
node-version: '20.x'
2828
cache: yarn

.github/workflows/ci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
submodules: true
2424
# Checkout pull request HEAD commit instead of merge commit.
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
# Fetch all history so gitlint can check the relevant commits.
2727
fetch-depth: '0'
2828
- name: Set up Python 3
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: '3.x'
3232
- name: Set up Node.js 20
33-
uses: actions/setup-node@v4
33+
uses: actions/setup-node@v5
3434
with:
3535
node-version: '20.x'
3636
cache: yarn

.github/workflows/cloudflare-deploy.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
</tr>
4141
</table>
4242
- name: Checkout code
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
# Checkout pull request HEAD commit instead of merge commit.
4545
with:
4646
submodules: true
4747
ref: ${{ github.event.pull_request.head.sha }}
4848
- name: Set up Node.js 20
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v5
5050
with:
5151
node-version: '20.x'
5252
cache: yarn
@@ -64,8 +64,7 @@ jobs:
6464
# Acquired from Cloudflare dashboard -> Compute > Workers & Pages or dashboard url: https://dash.cloudflare.com/<account-id>/
6565
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
6666
# Project created via Cloudflare dashboard or CLI command "npx wrangler pages project create <project-name>"
67-
command:
68-
pages deploy ./dist --project-name=rofl-app --branch ${{
67+
command: pages deploy ./dist --project-name=rofl-app --branch ${{
6968
github.event_name == 'pull_request' && format('pr-{0}',
7069
github.event.pull_request.number) || '' }}
7170
# On a subsequent run the original comment will be updated.

0 commit comments

Comments
 (0)