Skip to content

Commit

Permalink
Dependencies upgrade (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantcornholio authored Jan 9, 2025
1 parent 3dff7b4 commit d762b77
Show file tree
Hide file tree
Showing 10 changed files with 40,004 additions and 32,018 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: yarn

- name: Install Dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: yarn

- name: Install Dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ permissions:

jobs:
create-pr:
name: Create a test PR after merge
name: Create a test PR after merge
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# We need a fresh base branch every time,
# so that it doesn't contain the text that we want to merge with the PR.
Expand All @@ -26,11 +26,11 @@ jobs:
timestamp=$(date +%Y-%m-%dT%H-%M)
echo "base_branch=test_base_$timestamp" >> $GITHUB_OUTPUT
echo "head_branch=test_head_$timestamp" >> $GITHUB_OUTPUT
- name: Create a base branch
run: |
git push origin HEAD:${{ steps.generate_branches.outputs.base_branch }}
- name: Create the changes for the PR
run: |
mkdir text
Expand Down
Loading

0 comments on commit d762b77

Please sign in to comment.