Skip to content

Commit bcc8fc0

Browse files
committed
ci(actions): Update action versions for deploy and setup workflows
1 parent 8e22aec commit bcc8fc0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/actions/deploy-pages/action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ runs:
2020
using: "composite"
2121
steps:
2222
- name: Setup Pages
23-
uses: actions/configure-pages@v4
23+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
2424

2525
- name: Upload artifact
26-
uses: actions/upload-pages-artifact@v3
26+
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
2727
with:
2828
path: ${{ inputs.artifact-path }}
2929

3030
- name: Deploy to GitHub Pages
31-
if: ${{ !inputs.preview }}
32-
uses: actions/deploy-pages@v4
31+
id: deployment
32+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
3333
with:
3434
preview: ${{ inputs.preview }}

.github/actions/setup-go-node/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ runs:
3131
using: "composite"
3232
steps:
3333
- name: "Set up Go"
34-
if: ${{ !inputs.skip-go }}
34+
if: ${{ inputs.skip-go != 'true' }}
3535
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3
3636
with:
3737
go-version-file: ${{ inputs.go-version-file }}
3838
cache-dependency-path: ${{ inputs.go-cache-dependency-path }}
3939
- name: "Set up Node.js"
40-
if: ${{ !inputs.skip-node }}
40+
if: ${{ inputs.skip-node != 'true' }}
4141
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
4242
with:
4343
node-version-file: ${{ inputs.node-version-file }}

0 commit comments

Comments
 (0)