Skip to content
Closed
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/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
pull-requests: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
uses: pozil/auto-assign-issue@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: cypher0n3
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
node-version: '20'

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand All @@ -66,7 +66,7 @@ jobs:

- name: Upload Go code blocks report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: go-code-blocks-validation-report
path: tmp/go_code_blocks_report.md
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Upload signature consistency report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: signature-consistency-report
path: tmp/signature_consistency_report.txt
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Upload heading numbering report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: heading-numbering-validation-report
path: tmp/heading_numbering_report.txt
Expand All @@ -99,7 +99,7 @@ jobs:

- name: Upload Go definitions index report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: go-definitions-index-report
path: tmp/go_defs_index_report.txt
Expand All @@ -110,7 +110,7 @@ jobs:

- name: Upload requirement reference report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: requirement-reference-report
path: tmp/req_references_report.txt
Expand All @@ -121,7 +121,7 @@ jobs:

- name: Upload feature coverage report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: feature-coverage-report
path: tmp/feature_coverage_report.txt
Expand All @@ -132,7 +132,7 @@ jobs:

- name: Upload requirements coverage report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: requirements-coverage-report
path: tmp/requirements_coverage_report.txt
Expand All @@ -143,7 +143,7 @@ jobs:

- name: Upload link validation report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: link-validation-report
path: tmp/validation_report.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-bdd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: api/go/go.sum
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Upload BDD test output
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: bdd-test-output
path: tmp/bdd_test_output_*.txt
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: api/go/go.sum
Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: api/go/go.sum
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: api/go/go.sum
Expand All @@ -109,13 +109,13 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: api/go/go.sum

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand All @@ -124,7 +124,7 @@ jobs:

- name: Upload Go signature validation report
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: go-signature-validation-report
path: go_signature_validation_report.txt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nvpkg-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: cli/nvpkg/go.sum
Expand All @@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: cli/nvpkg/go.sum
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: cli/nvpkg/go.sum
Expand All @@ -107,7 +107,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.25'
cache-dependency-path: cli/nvpkg/go.sum
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nvpkg-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
cache-dependency-path: cli/nvpkg/go.sum
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
find "$dir" -type f | sort

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.goos }}-${{ matrix.goarch }}
path: cli/dist/${{ matrix.goos }}-${{ matrix.goarch }}
Expand All @@ -90,7 +90,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7

- name: Create archives per platform
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.11'

Expand Down