Skip to content

Commit 358d2db

Browse files
authored
Merge branch 'main' into fix/getdataconnect-connector-caching
2 parents eb3d944 + e2e5f0d commit 358d2db

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed
-6 Bytes
Binary file not shown.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
node-version: [18.x, 20.x, 22.x, 24.x]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616
- name: Set up Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: Install and build

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929

3030
steps:
3131
- name: Checkout source for staging
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
3333
with:
3434
ref: ${{ github.event.client_payload.ref || github.ref }}
3535

3636
- name: Set up Node.js
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3838
with:
3939
node-version: 18.x
4040

@@ -72,7 +72,7 @@ jobs:
7272
# Attach the packaged artifacts to the workflow output. These can be manually
7373
# downloaded for later inspection if necessary.
7474
- name: Archive artifacts
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
7676
with:
7777
name: dist
7878
path: dist

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
# via the 'ref' client parameter.
4141
steps:
4242
- name: Checkout source for staging
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4444
with:
4545
ref: ${{ github.event.client_payload.ref || github.ref }}
4646

4747
- name: Set up Node.js
48-
uses: actions/setup-node@v4
48+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
4949
with:
5050
node-version: 18.x
5151

@@ -77,7 +77,7 @@ jobs:
7777
# Attach the packaged artifacts to the workflow output. These can be manually
7878
# downloaded for later inspection if necessary.
7979
- name: Archive artifacts
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
8181
with:
8282
name: dist
8383
path: dist
@@ -102,23 +102,24 @@ jobs:
102102
startsWith(github.event.pull_request.title, '[chore] Release ')
103103
104104
runs-on: ubuntu-latest
105+
environment: Release
105106
permissions:
106107
contents: write
107108

108109
steps:
109110
- name: Checkout source for publish
110-
uses: actions/checkout@v4
111+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
111112

112113
# Download the artifacts created by the stage_release job.
113114
- name: Download release candidates
114-
uses: actions/download-artifact@v4.1.7
115+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
115116
with:
116117
name: dist
117118
path: dist
118119

119120
# Node.js and NPM are needed to complete the publish.
120121
- name: Set up Node.js
121-
uses: actions/setup-node@v4
122+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
122123
with:
123124
node-version: 18.x
124125

0 commit comments

Comments
 (0)