Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from projectdiscovery:main #13

Merged
merged 3 commits into from
Feb 13, 2025
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
7 changes: 5 additions & 2 deletions .github/workflows/autorelease-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ jobs:
go-version: 1.21.x

- name: Bump version in banner.go
working-directory: internal/runner
run: |
curl -LO https://raw.githubusercontent.com/projectdiscovery/utils/main/scripts/versionbump/versionbump.go
go run versionbump.go -file internal/runner/banner.go -var version -part patch
go run versionbump.go -file banner.go -var version -part patch

- name: Create local changes
working-directory: internal/runner
run: |
git add internal/runner/banner.go
git add banner.go

- name: Commit files
working-directory: internal/runner
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-12]
os: [ubuntu-latest, windows-latest, macOS-latest]
go-version: [1.21.x]
steps:
- name: Set up Go
Expand Down Expand Up @@ -44,4 +44,4 @@ jobs:

- name: Race Condition Tests
run: go build -race .
working-directory: cmd/cdncheck/
working-directory: cmd/cdncheck/
2 changes: 1 addition & 1 deletion internal/runner/banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const banner = `
`

// version is the current version of cdncheck
const version = `v1.1.0`
const version = `v1.1.1`

// showBanner is used to show the banner to the user
func showBanner() {
Expand Down