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

Do not run CodeQL action on push #34

Merged
merged 4 commits into from
Jun 19, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: "Code scanning - action"

on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
schedule:
- cron: '0 5 * * 0'

permissions:
security-events: write # Used by this action.

jobs:
CodeQL-Build:

Expand All @@ -25,7 +25,7 @@ jobs:
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ archive. Inside is the `mm-network-analyzer` binary.

## Installation from source or Git

You need the Go compiler (Go 1.10+). You can get it at the [Go
You need the Go compiler (Go 1.21+). You can get it at the [Go
website](https://golang.org).

The easiest way is via `go get`:

$ go get -u github.com/maxmind/mm-network-analyzer
$ go install github.com/maxmind/mm-network-analyzer@latest

The program will be installed to `$GOPATH/bin/mm-network-analyzer`.

Expand All @@ -35,7 +35,7 @@ https://github.com/maxmind/mm-network-analyzer/issues

# Copyright and License

This software is Copyright (c) 2018 by MaxMind, Inc.
This software is Copyright (c) 2018 - 2024 by MaxMind, Inc.

This is free software, licensed under the [Apache License, Version
2.0](LICENSE-APACHE) or the [MIT License](LICENSE-MIT), at your option.
Loading