Skip to content

Commit 4b2cac1

Browse files
committed
Switched to using major tags
1 parent 5f31231 commit 4b2cac1

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/template-compatibility-comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
28+
uses: actions/checkout@v6
2929

3030
- name: Download results artifact
31-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
31+
uses: actions/download-artifact@v4
3232
with:
3333
name: template-compat-results
3434
path: /tmp/compat-results
3535
run-id: ${{ github.event.workflow_run.id }}
3636
github-token: ${{ secrets.GITHUB_TOKEN }}
3737

3838
- name: Post or remove PR comment
39-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
39+
uses: actions/github-script@v8
4040
with:
4141
script: |
4242
const path = require('path');

.github/workflows/template-compatibility.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout SDK
35-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
35+
uses: actions/checkout@v6
3636
with:
3737
submodules: recursive
3838

@@ -49,13 +49,13 @@ jobs:
4949
bun-version: 1.3.12
5050

5151
- name: Cache Bun dependencies
52-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
52+
uses: actions/cache@v5
5353
with:
5454
path: ~/.bun/install/cache
5555
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
5656

5757
- name: Cache cargo + Javy
58-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
58+
uses: actions/cache@v5
5959
with:
6060
path: |
6161
~/.cargo/registry
@@ -87,15 +87,15 @@ jobs:
8787
fi
8888
8989
- name: Checkout cre-templates (${{ steps.detect-ref.outputs.ref }})
90-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
90+
uses: actions/checkout@v6
9191
with:
9292
repository: ${{ env.TEMPLATES_REPO }}
9393
ref: ${{ steps.detect-ref.outputs.ref }}
9494
path: cre-templates
9595
token: ${{ secrets.GITHUB_TOKEN }}
9696

9797
- name: Setup Node (for npm)
98-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
98+
uses: actions/setup-node@v4
9999
with:
100100
node-version: '22'
101101

@@ -138,7 +138,7 @@ jobs:
138138
139139
- name: Upload results artifact
140140
if: always()
141-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
141+
uses: actions/upload-artifact@v4
142142
with:
143143
name: template-compat-results
144144
path: /tmp/compat-results/

0 commit comments

Comments
 (0)