Skip to content

Commit b206639

Browse files
committed
Bump GitHub action versions
1 parent 1b10978 commit b206639

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v1
42+
uses: github/codeql-action/init@v2
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v1
53+
uses: github/codeql-action/autobuild@v2
5454

5555
# ℹ️ Command-line programs to run using the OS shell.
5656
# 📚 https://git.io/JvXDl
@@ -64,4 +64,4 @@ jobs:
6464
# make release
6565

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v1
67+
uses: github/codeql-action/analyze@v2

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Set up QEMU
26-
uses: docker/setup-qemu-action@v1
26+
uses: docker/setup-qemu-action@v2
2727

2828
- name: Set up Docker Buildx
2929
id: buildx
30-
uses: docker/setup-buildx-action@v1
30+
uses: docker/setup-buildx-action@v2
3131

3232
- name: Available platforms
3333
run: echo ${{ steps.buildx.outputs.platforms }}
3434

3535
- name: Log in to the Container registry
36-
uses: docker/login-action@v1
36+
uses: docker/login-action@v2
3737
with:
3838
registry: ${{ env.REGISTRY }}
3939
username: ${{ github.actor }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Extract metadata (tags, labels) for Docker
4343
id: meta
44-
uses: docker/metadata-action@v3
44+
uses: docker/metadata-action@v4
4545
with:
4646
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4747
flavor: |
@@ -50,7 +50,7 @@ jobs:
5050
type=semver,pattern={{version}}
5151
5252
- name: Build and push Docker image
53-
uses: docker/build-push-action@v2
53+
uses: docker/build-push-action@v3
5454
with:
5555
context: .
5656
file: ./Dockerfile

.github/workflows/python-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Set up Python 3.8
19-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: 3.8
2222
- name: Install dependencies

0 commit comments

Comments
 (0)