Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 808d41b

Browse files
Merge branch 'main' into bug/updating_of_grant_access_on_full_refresh
2 parents 479b5a0 + 461fa04 commit 808d41b

File tree

9 files changed

+53
-23
lines changed

9 files changed

+53
-23
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump dorny/paths-filter from 2 to 3"
3+
time: 2024-04-12T15:52:28.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1179
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump actions/github-script from 6 to 7"
3+
time: 2024-04-12T15:52:37.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1180
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump dbt-labs/actions from 1.1.0 to 1.1.1"
3+
time: 2024-04-12T15:52:46.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1181
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump actions/checkout from 3 to 4"
3+
time: 2024-04-12T15:53:54.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1183
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: "Dependencies"
2+
body: "Bump actions/setup-python from 4 to 5"
3+
time: 2024-04-12T15:53:54.00000Z
4+
custom:
5+
Author: dependabot[bot]
6+
PR: 1182

.github/scripts/integration-test-matrix.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = ({ context }) => {
4444

4545
if (labels.includes("test macos") || testAllLabel) {
4646
include.push({
47-
os: "macos-latest",
47+
os: "macos-12",
4848
adapter,
4949
"python-version": pythonVersion,
5050
});
@@ -78,7 +78,7 @@ module.exports = ({ context }) => {
7878
// additionally include runs for all adapters, on macos and windows,
7979
// but only for the default python version
8080
for (const adapter of supportedAdapters) {
81-
for (const operatingSystem of ["windows-latest", "macos-latest"]) {
81+
for (const operatingSystem of ["windows-latest", "macos-12"]) {
8282
include.push({
8383
os: operatingSystem,
8484
adapter: adapter,

.github/workflows/integration.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ jobs:
6969
steps:
7070
- name: Check out the repository (non-PR)
7171
if: github.event_name != 'pull_request_target'
72-
uses: actions/checkout@v3
72+
uses: actions/checkout@v4
7373
with:
7474
persist-credentials: false
7575

7676
- name: Check out the repository (PR)
7777
if: github.event_name == 'pull_request_target'
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979
with:
8080
persist-credentials: false
8181
ref: ${{ github.event.pull_request.head.sha }}
@@ -88,7 +88,7 @@ jobs:
8888
# 'false' - if none of changed files matches any of filter rules
8989
# also, returns:
9090
# `changes` - JSON array with names of all filters matching any of the changed files
91-
uses: dorny/paths-filter@v2
91+
uses: dorny/paths-filter@v3
9292
id: get-changes
9393
with:
9494
token: ${{ secrets.GITHUB_TOKEN }}
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Generate integration test matrix
102102
id: generate-matrix
103-
uses: actions/github-script@v6
103+
uses: actions/github-script@v7
104104
env:
105105
CHANGES: ${{ steps.get-changes.outputs.changes }}
106106
with:
@@ -143,21 +143,21 @@ jobs:
143143
steps:
144144
- name: Check out the repository
145145
if: github.event_name != 'pull_request_target'
146-
uses: actions/checkout@v3
146+
uses: actions/checkout@v4
147147
with:
148148
persist-credentials: false
149149

150150
# explicity checkout the branch for the PR,
151151
# this is necessary for the `pull_request_target` event
152152
- name: Check out the repository (PR)
153153
if: github.event_name == 'pull_request_target'
154-
uses: actions/checkout@v3
154+
uses: actions/checkout@v4
155155
with:
156156
persist-credentials: false
157157
ref: ${{ github.event.pull_request.head.sha }}
158158

159159
- name: Set up Python ${{ matrix.python-version }}
160-
uses: actions/setup-python@v4
160+
uses: actions/setup-python@v5
161161
with:
162162
python-version: ${{ matrix.python-version }}
163163

@@ -223,21 +223,21 @@ jobs:
223223
steps:
224224
- name: Check out the repository
225225
if: github.event_name != 'pull_request_target'
226-
uses: actions/checkout@v3
226+
uses: actions/checkout@v4
227227
with:
228228
persist-credentials: false
229229

230230
# explicitly checkout the branch for the PR,
231231
# this is necessary for the `pull_request_target` event
232232
- name: Check out the repository (PR)
233233
if: github.event_name == 'pull_request_target'
234-
uses: actions/checkout@v3
234+
uses: actions/checkout@v4
235235
with:
236236
persist-credentials: false
237237
ref: ${{ github.event.pull_request.head.sha }}
238238

239239
- name: Set up Python 3.8
240-
uses: actions/setup-python@v4
240+
uses: actions/setup-python@v5
241241
with:
242242
python-version: "3.8"
243243

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343

4444
steps:
4545
- name: Check out the repository
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
persist-credentials: false
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v5
5252
with:
5353
python-version: '3.8'
5454

@@ -79,12 +79,12 @@ jobs:
7979

8080
steps:
8181
- name: Check out the repository
82-
uses: actions/checkout@v3
82+
uses: actions/checkout@v4
8383
with:
8484
persist-credentials: false
8585

8686
- name: Set up Python ${{ matrix.python-version }}
87-
uses: actions/setup-python@v4
87+
uses: actions/setup-python@v5
8888
with:
8989
python-version: ${{ matrix.python-version }}
9090

@@ -120,12 +120,12 @@ jobs:
120120

121121
steps:
122122
- name: Check out the repository
123-
uses: actions/checkout@v3
123+
uses: actions/checkout@v4
124124
with:
125125
persist-credentials: false
126126

127127
- name: Set up Python
128-
uses: actions/setup-python@v4
128+
uses: actions/setup-python@v5
129129
with:
130130
python-version: '3.8'
131131

@@ -173,12 +173,12 @@ jobs:
173173
strategy:
174174
fail-fast: false
175175
matrix:
176-
os: [ubuntu-latest, macos-latest, windows-latest]
176+
os: [ubuntu-latest, macos-12, windows-latest]
177177
python-version: ['3.8', '3.9', '3.10', '3.11']
178178

179179
steps:
180180
- name: Set up Python ${{ matrix.python-version }}
181-
uses: actions/setup-python@v4
181+
uses: actions/setup-python@v5
182182
with:
183183
python-version: ${{ matrix.python-version }}
184184
- name: Install python dependencies

.github/workflows/nightly-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: "Checkout ${{ github.repository }} Branch ${{ env.RELEASE_BRANCH }}"
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343
with:
4444
ref: ${{ env.RELEASE_BRANCH }}
4545

@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: "Audit Version And Parse Into Parts"
5959
id: semver
60-
uses: dbt-labs/actions/[email protected].0
60+
uses: dbt-labs/actions/[email protected].1
6161
with:
6262
version: ${{ steps.version-number-sources.outputs.current_version }}
6363

@@ -79,7 +79,7 @@ jobs:
7979
echo "number=$number" >> $GITHUB_OUTPUT
8080
8181
- name: "Audit Nightly Release Version And Parse Into Parts"
82-
uses: dbt-labs/actions/[email protected].0
82+
uses: dbt-labs/actions/[email protected].1
8383
with:
8484
version: ${{ steps.nightly-release-version.outputs.number }}
8585

0 commit comments

Comments
 (0)