Skip to content
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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
GOARCH: ${{ matrix.GOARCH }}
SUFFIX: ${{ matrix.SUFFIX || '' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand All @@ -47,7 +47,7 @@ jobs:
cache: false
- name: go build
run: go build -o grafana-image-renderer-"$GOOS"-"$GOARCH""$SUFFIX" -buildvcs -ldflags '-s -w' .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: grafana-image-renderer-${{ matrix.GOOS }}-${{ matrix.GOARCH }}${{ matrix.SUFFIX || '' }}
path: grafana-image-renderer-${{ matrix.GOOS }}-${{ matrix.GOARCH }}${{ matrix.SUFFIX || '' }}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
if: needs.tag.outputs.registry == 'docker.io'
uses: grafana/shared-workflows/actions/dockerhub-login@dockerhub-login/v1

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
contents: write # to create the release
packages: read # to read the package information
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
merge-multiple: true
path: bins/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: read # clone the repository
security-events: write # upload SARIF results
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
contents: read # clone the repository
security-events: write # upload SARIF results
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: read # clone the repository
id-token: write # required to read secrets
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: grafana/writers-toolkit/publish-technical-documentation@9aed4f7c5b3caa1b58d72ee39232333407d4acbf # publish-technical-documentation/v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
permissions:
contents: read # clone the repository
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand All @@ -33,7 +33,7 @@ jobs:
permissions:
contents: read # clone the repository
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand All @@ -47,7 +47,7 @@ jobs:
permissions:
contents: read # clone the repository
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand All @@ -61,7 +61,7 @@ jobs:
permissions:
contents: read # clone the repository
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
Expand Down
Loading