Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand All @@ -34,7 +32,7 @@ jobs:
python3 -m pip install asciinema

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: "1.21"
cache-dependency-path: cmd/nbe/go.sum
Expand All @@ -53,7 +51,7 @@ jobs:
nbe generate recording --exit-on-error

- name: Auto-commit generated recordings
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v7
if: ${{ github.ref_name == 'main' }}
with:
commit_message: Auto-commit recording
Expand Down
Loading