Skip to content
Merged
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions .github/workflows/actions.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This file is machine-generated by `gh actions-lock`.
# Do not edit by hand; run `gh actions-lock` to update.
# Docs: https://gh.io/actions-lockfile
version: 'v0.0.2'
workflows:
'.github/workflows/ci.yml':
- 'actions/checkout@v4.3.1'
- 'actions/setup-go@v5.6.0'
'.github/workflows/release.yml':
- 'actions/checkout@v4.3.1'
- 'actions/setup-go@v5.6.0'
dependencies:
'actions/checkout@v4.3.1':
ref: 'v4.3.1'
commit: 'sha1-34e114876b0b11c390a56381ad16ebd13914f8d5'
owner_id: 44036562
repo_id: 197814629
'actions/setup-go@v5.6.0':
ref: 'v5.6.0'
commit: 'sha1-40f1582b2485089dde7abd97c1529aa768e1baff'
owner_id: 44036562
repo_id: 192624594
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This workflow is managed by gh actions-lock.

name: CI

on:
Expand All @@ -17,9 +19,9 @@ jobs:
matrix:
go-version: ['1.19', '1.22', '1.23']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1

- uses: actions/setup-go@v5
- uses: actions/setup-go@v5.6.0
Comment on lines 21 to +24
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: go/go.sum
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This workflow is managed by gh actions-lock.

name: Release

on:
Expand Down Expand Up @@ -31,12 +33,12 @@ jobs:
echo "::error::Releases must be cut from main (got $GITHUB_REF)."
exit 1

- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1
with:
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-go@v5
- uses: actions/setup-go@v5.6.0
with:
go-version: '1.19'
cache-dependency-path: go/go.sum
Expand Down
Loading