Skip to content

Commit

Permalink
chore(deps): update golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
sigilioso committed Sep 10, 2024
1 parent 485704f commit 982c4f2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pullRequestAndMergeMaster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: CreateAndPushWindowsExecutable
strategy:
matrix:
go: [ 1.22 ]
go: [ 1.23 ]
goarch: [ amd64 ]
runs-on: windows-2019
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
$ErrorView = 'NormalView'
[Environment]::SetEnvironmentVariable("path", "$env:path;$env:GOPATH\bin", "Machine")
.\win_build.ps1 -arch ${{ matrix.goarch }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: binaries
path: .\target\bin\windows_${{ matrix.goarch }}
path: .\target\bin\windows_${{ matrix.goarch }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: CreateAndPushWindowsExecutable
strategy:
matrix:
go: [ 1.22 ]
go: [ 1.23 ]
goarch: [ amd64 ]
runs-on: windows-2019
steps:
Expand Down Expand Up @@ -60,4 +60,4 @@ jobs:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./${{ github.event.repository.name }}-${{ github.event.release.tag_name }}-${{ matrix.goarch }}.zip
asset_name: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}-${{ matrix.goarch }}.zip
asset_content_type: Integration Zip
asset_content_type: Integration Zip
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.3 (2024-09-10)
### Fixed
- Bumped dependencies

## 1.0.2 (2024-08-01)
### Fixed
- Bumped dependencies
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/newrelic/nri-winservices

go 1.22.5
go 1.23.1

require (
github.com/newrelic/infra-integrations-sdk/v4 v4.2.1
Expand Down

0 comments on commit 982c4f2

Please sign in to comment.