Skip to content

Commit 9804e67

Browse files
authored
cherry pick 7fbeced (#7638)
1 parent 9642789 commit 9804e67

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
github.event.pull_request.merged
3636
&& contains(github.event.label.name, 'backport')
3737
steps:
38-
- uses: tibdex/[email protected].2
38+
- uses: tibdex/[email protected].3
3939
with:
4040
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
latest: ${{ steps.latest.outputs.latest }}
3737
minor_latest: ${{ steps.latest.outputs.minor_latest }}
3838
steps:
39-
- uses: actions/checkout@v1
39+
- uses: actions/checkout@v3
4040
- name: Split version
4141
id: version
4242
run: |
@@ -60,7 +60,7 @@ jobs:
6060
needs: [get_version_meta]
6161
steps:
6262
- name: Set up Docker Buildx
63-
uses: docker/setup-buildx-action@v1
63+
uses: docker/setup-buildx-action@v2
6464

6565
build_and_push:
6666
name: Build images and push to GHCR
@@ -76,14 +76,14 @@ jobs:
7676
echo "build_arg_value=$BUILD_ARG_VALUE" >> $GITHUB_OUTPUT
7777
7878
- name: Log in to the GHCR
79-
uses: docker/login-action@v1
79+
uses: docker/login-action@v2
8080
with:
8181
registry: ghcr.io
8282
username: ${{ github.actor }}
8383
password: ${{ secrets.GITHUB_TOKEN }}
8484

8585
- name: Build and push MAJOR.MINOR.PATCH tag
86-
uses: docker/build-push-action@v2
86+
uses: docker/build-push-action@v4
8787
with:
8888
file: docker/Dockerfile
8989
push: True
@@ -94,7 +94,7 @@ jobs:
9494
ghcr.io/dbt-labs/${{ github.event.inputs.package }}:${{ github.event.inputs.version_number }}
9595
9696
- name: Build and push MINOR.latest tag
97-
uses: docker/build-push-action@v2
97+
uses: docker/build-push-action@v4
9898
if: ${{ needs.get_version_meta.outputs.minor_latest == 'True' }}
9999
with:
100100
file: docker/Dockerfile
@@ -106,7 +106,7 @@ jobs:
106106
ghcr.io/dbt-labs/${{ github.event.inputs.package }}:${{ needs.get_version_meta.outputs.major }}.${{ needs.get_version_meta.outputs.minor }}.latest
107107
108108
- name: Build and push latest tag
109-
uses: docker/build-push-action@v2
109+
uses: docker/build-push-action@v4
110110
if: ${{ needs.get_version_meta.outputs.latest == 'True' }}
111111
with:
112112
file: docker/Dockerfile

.github/workflows/structured-logging-schema-check.yml

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

4040
steps:
4141
- name: checkout dev
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343
with:
4444
persist-credentials: false
4545

4646
- name: Setup Python
47-
uses: actions/setup-python@v2.2.2
47+
uses: actions/setup-python@v4
4848
with:
4949
python-version: "3.8"
5050

0 commit comments

Comments
 (0)