Skip to content

Commit

Permalink
update next release
Browse files Browse the repository at this point in the history
  • Loading branch information
bauergeorg committed Sep 11, 2024
1 parent 948e153 commit 5c55787
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## Unreleased
## [1.3.6] - 2024-09-11

### Changed
- update actions
- cleanup dependabot
- setup explicit requirement

## [1.3.4] - 2023-03-01

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ This action supports:
## Checkout a special branch
```yaml
- name: Checkout repo with a special branch
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
ref: my-branch
```
## Checkout private repo
```yaml
- name: Checkout private repo
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
repository: my-org/my-private-repo
token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT
Expand All @@ -45,7 +45,7 @@ This action supports:
## GIT LFS repo
```yaml
- name: Checkout git lfs repo
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
lfs: true
```
Expand All @@ -56,15 +56,15 @@ If you want to use LFS use:

```yaml
- name: Checkout repo with submodules
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
submodules: recursive
```

## Checkout a special branch with fallback alternative
```yaml
- name: Checkout repo with alternative ref
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
ref: feature/blue-light
alt_ref: develop
Expand All @@ -73,15 +73,15 @@ If you want to use LFS use:
## Checkout the last tag with a regular expression
```yaml
- name: Checkout repo with alternative ref
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
ref: */release/*.*.*
```

## Checkout the last tag with a regular expression and not matching to default branch
```yaml
- name: Checkout repo with alternative ref
uses: rohmanngmbh/action-checkout-repo@v1.3.5
uses: rohmanngmbh/action-checkout-repo@v1.3.6
with:
ref: */release/*.*.*
regex_next_to_last: true
Expand Down

0 comments on commit 5c55787

Please sign in to comment.