Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jastBytes/sprint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.3
Choose a base ref
...
head repository: jastBytes/sprint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 9 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 22, 2024

  1. Update golangci-lint.yml

    jastBytes authored Nov 22, 2024
    Copy the full SHA
    62e6a22 View commit details
  2. Update and rename golangci-lint.yml to lint-and.test.yml

    jastBytes authored Nov 22, 2024
    Copy the full SHA
    5ece067 View commit details
  3. Create dependabot.yml

    jastBytes authored Nov 22, 2024
    Copy the full SHA
    1acb542 View commit details
  4. ghactions: bump golangci/golangci-lint-action from 3 to 6

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3 to 6.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v3...v6)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Nov 22, 2024
    Copy the full SHA
    b3a2d6a View commit details
  5. ghactions: bump actions/checkout from 3 to 4

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Nov 22, 2024
    Copy the full SHA
    e798c36 View commit details
  6. Merge pull request #3 from jastBytes/dependabot/github_actions/action…

    …s/checkout-4
    
    ghactions: bump actions/checkout from 3 to 4
    jastBytes authored Nov 22, 2024
    Copy the full SHA
    a93a6d2 View commit details
  7. Merge pull request #2 from jastBytes/dependabot/github_actions/golang…

    …ci/golangci-lint-action-6
    
    ghactions: bump golangci/golangci-lint-action from 3 to 6
    jastBytes authored Nov 22, 2024
    Copy the full SHA
    5518194 View commit details
  8. ghactions: bump actions/setup-go from 4 to 5

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Nov 22, 2024
    Copy the full SHA
    eeedf68 View commit details
  9. Merge pull request #1 from jastBytes/dependabot/github_actions/action…

    …s/setup-go-5
    
    ghactions: bump actions/setup-go from 4 to 5
    jastBytes authored Nov 22, 2024
    Copy the full SHA
    53cb2c7 View commit details
Showing with 39 additions and 4 deletions.
  1. +33 −0 .github/dependabot.yml
  2. +6 −4 .github/workflows/{golangci-lint.yml → lint-and.test.yml}
33 changes: 33 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
commit-message:
# Prefix all commit messages with "ghactions"
prefix: "ghactions"
# Specify labels for pull requests
labels:
- "github-actions"
- "chore"
# Maintain dependencies for golang
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
day: "sunday"
commit-message:
# Prefix all commit messages with "golang"
prefix: "golang"
# Specify labels for npm pull requests
labels:
- "golang"
- "chore"
Original file line number Diff line number Diff line change
@@ -12,16 +12,16 @@ permissions:

jobs:
golangci:
name: lint
name: lint-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
@@ -52,3 +52,5 @@ jobs:

# Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
# install-mode: "goinstall"
- name: Test
run: go test -v ./...