Skip to content

Commit

Permalink
Latest is not universal for github actions ¯\_(ツ)_/¯
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 1, 2023
1 parent 6e90b1c commit 8e13472
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@latest
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@latest
uses: actions/setup-go@v4
with:
go-version: 1.20

- name: Download cyclonedx-gomod
uses: CycloneDX/gh-gomod-generate-sbom@latest
uses: CycloneDX/gh-gomod-generate-sbom@v1
with:
version: v1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@latest
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@latest
uses: actions/setup-go@v4
with:
go-version: 1.20

Expand Down

0 comments on commit 8e13472

Please sign in to comment.