@@ -31,15 +31,15 @@ jobs:
3131 NX_CLOUD_ACCESS_TOKEN=nx_token:nx_token
3232
3333 - name : Checkout repository
34- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
34+ uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 .0.0
3535 with :
3636 # We need to fetch all branches and commits so that Nx affected has a base to compare against.
3737 fetch-depth : 0
3838 persist-credentials : false
3939
40- - uses : nrwl/nx-set-shas@3e9ad7370203c1e93d109be57f3b72eb0eb511b1 # v4.4.0
40+ - uses : nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1 # v5.0.1
4141 - name : Setup nodejs
42- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
42+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
4343 with :
4444 node-version-file : ' .nvmrc'
4545 registry-url : ' https://registry.npmjs.org'
6565 npm pack --workspace="@grafana/create-plugin" --workspace="@grafana/sign-plugin" --workspace="@grafana/plugin-e2e" --workspace="@grafana/tsconfig" --pack-destination="./packed-artifacts"
6666 cp ./.github/knip.json ./packed-artifacts
6767 - name : Upload artifacts for testing
68- uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 .0.0
68+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 .0.1
6969 with :
7070 name : packed-artifacts
7171 path : ./packed-artifacts
@@ -99,12 +99,12 @@ jobs:
9999 export_env : false
100100
101101 - name : Setup nodejs
102- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
102+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
103103 with :
104104 node-version : ' 24'
105105
106106 - name : Download packed artifacts
107- uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 .0.0
107+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 .0.1
108108 with :
109109 name : packed-artifacts
110110 path : ./packed-artifacts
@@ -183,7 +183,7 @@ jobs:
183183 WORKING_DIR : ' myorg-nobackend-panel'
184184 steps :
185185 - name : Setup nodejs
186- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
186+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
187187 with :
188188 node-version : ' 24'
189189
@@ -195,7 +195,7 @@ jobs:
195195 working-directory : ./${{ env.WORKING_DIR }}
196196
197197 - name : Download packed artifacts
198- uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 .0.0
198+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 .0.1
199199 with :
200200 name : packed-artifacts
201201 path : ./packed-artifacts
@@ -299,12 +299,12 @@ jobs:
299299 DOCKERHUB_PASSWORD=dockerhub:password
300300
301301 - name : Setup nodejs
302- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
302+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
303303 with :
304304 node-version : ' 24'
305305
306306 - name : Download packed artifacts
307- uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 .0.0
307+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 .0.1
308308 with :
309309 name : packed-artifacts
310310 path : ./packed-artifacts
@@ -348,22 +348,22 @@ jobs:
348348 run : npm run test:ci
349349 working-directory : ./${{ matrix.workingDir }}
350350
351- - uses : actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2 .0
351+ - uses : actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5 .0
352352 with :
353353 go-version-file : ./${{ matrix.workingDir }}/go.mod
354354 cache-dependency-path : ./${{ matrix.workingDir }}/go.sum
355355 if : ${{ matrix.hasBackend == true }}
356356
357357 - name : Lint backend
358358 if : ${{ matrix.hasBackend == true }}
359- uses : golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2 .0
359+ uses : golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3 .0
360360 with :
361361 version : latest
362362 working-directory : ./${{ matrix.workingDir }}
363363 args : ./...
364364
365365 - name : Build plugin backend
366- uses : magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1 .0
366+ uses : magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4.0 .0
367367 with :
368368 version : latest
369369 args : -v build:linux
@@ -372,7 +372,7 @@ jobs:
372372
373373 - name : Test plugin backend
374374 if : ${{ matrix.hasBackend == true }}
375- uses : magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1 .0
375+ uses : magefile/mage-action@a662bd8c29d8106879588cfff83b2faf6e6f59db # v4.0 .0
376376 with :
377377 version : latest
378378 args : test
@@ -384,7 +384,7 @@ jobs:
384384
385385 - name : Log in to Docker Hub
386386 if : ${{ github.event.pull_request.head.repo.fork != true }}
387- uses : docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6 .0
387+ uses : docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4 .0
388388 with :
389389 username : ${{ env.DOCKERHUB_USERNAME }}
390390 password : ${{ env.DOCKERHUB_PASSWORD }}
0 commit comments