Skip to content

Commit

Permalink
Merge branch 'release/1.1.0-alpha.34'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Nov 24, 2024
2 parents b1c4178 + d4fc7f9 commit ea125bb
Show file tree
Hide file tree
Showing 8 changed files with 394 additions and 232 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:

steps: # The sequence of tasks that make up a job.
- name: Checking out repository code
uses: actions/checkout@v4.2.0 # Action for checking out a repo.
uses: actions/checkout@v4.2.2 # Action for checking out a repo.

# Cache dependencies to speed up builds
- name: Cache cargo dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.2
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -85,13 +85,13 @@ jobs:
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0 # Fetches all history for all branches and tags

# Generate a changelog for the new release using Git
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.2.0
uses: orhun/git-cliff-action@v4.4.0
id: git-cliff
with:
config: cliff.toml # The configuration file for git-cliff
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2
with:
ref: ${{ github.event.release.tag_name }}

Expand All @@ -27,7 +27,7 @@ jobs:

# Cache dependencies to speed up builds
- name: Cache cargo dependencies
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.2
with:
path: |
~/.cargo/bin/
Expand All @@ -45,7 +45,7 @@ jobs:
override: true

- name: Deploy to Workers
uses: cloudflare/wrangler-action@v3.7.0
uses: cloudflare/wrangler-action@v3.12.1
with:
accountId: ${{ secrets.CF_ACCOUNT_ID }}
apiToken: ${{ secrets.CF_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
- name: Checkout Repository Code
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.1.0-alpha.34] - 2024-11-24

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.1.0-alpha.33] - 2024-09-26

### Features
Expand Down
Loading

0 comments on commit ea125bb

Please sign in to comment.