Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
SLUG: ${{ github.repository }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set TAG
run: grep -F . Tagfile && echo TAG=$(cat Tagfile) >>$GITHUB_ENV
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
tagfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # For $ git tag

- name: Ensure Tagfile is usable
run: grep -E '^[0-9]+[.][0-9]+[.][0-9]+$' Tagfile

- name: Checkout master Tagfile
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
path: ./master-Tagfile
Expand All @@ -40,7 +40,7 @@ jobs:
check-goimports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
go-version: '>=1.17.0'
Expand All @@ -52,7 +52,7 @@ jobs:
check-nillness:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/[email protected]
- run: go run golang.org/x/tools/go/analysis/passes/nilness/cmd/nilness@latest ./...

Expand All @@ -74,7 +74,7 @@ jobs:
env:
SLUG: ${{ github.repository }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: docker/[email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
buildkit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Ensure download script is in the right path
run: test -f .godownloader.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# TODO - godownloader -r FuzzyMonkeyCo/monkey -o .godownloader.sh .goreleaser.yml
- name: Run shellcheck
uses: ludeeus/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
command: version
github_token: ${{ secrets.github_token }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: lint
uses: FuzzyMonkeyCo/setup-monkey@v1
with:
Expand All @@ -39,7 +39,7 @@ jobs:
with:
command: version
github_token: ${{ secrets.github_token }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: lint
uses: FuzzyMonkeyCo/setup-monkey@v1
with:
Expand All @@ -58,7 +58,7 @@ jobs:
with:
command: version
github_token: ${{ secrets.github_token }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: lint
uses: FuzzyMonkeyCo/setup-monkey@v1
with:
Expand Down