Skip to content

Commit eb4a9a6

Browse files
authored
Merge pull request #34 from phpdocker-io/update-github-actions
Update github action versions
2 parents 42dd51a + d1662de commit eb4a9a6

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

.github/workflows/build-publish.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Set up QEMU
20-
uses: docker/setup-qemu-action@v2
20+
uses: docker/setup-qemu-action@v3
2121

2222
- name: Set up Docker Buildx
23-
uses: docker/setup-buildx-action@v2
23+
uses: docker/setup-buildx-action@v3
2424

2525
- name: Login to DockerHub
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
username: ${{ secrets.DOCKERHUB_USERNAME }}
2929
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -37,13 +37,13 @@ jobs:
3737
3838
- name: Check if release version has been bumped
3939
id: release_file_changed
40-
uses: tj-actions/changed-files@v37
40+
uses: tj-actions/changed-files@v44
4141
with:
4242
files: |
4343
release
4444
4545
- name: Build & push container image
46-
uses: docker/build-push-action@v3
46+
uses: docker/build-push-action@v6
4747
with:
4848
context: .
4949
platforms: linux/amd64,linux/arm64

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
name: "Code Scanning - Action"
22

33
on:
4-
push:
5-
branches: [master]
64
pull_request:
7-
branches: [master]
5+
push:
6+
branches: [ master ]
87
schedule:
9-
# ┌───────────── minute (0 - 59)
10-
# │ ┌───────────── hour (0 - 23)
11-
# │ │ ┌───────────── day of the month (1 - 31)
12-
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
13-
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
14-
# │ │ │ │ │
15-
# │ │ │ │ │
16-
# │ │ │ │ │
17-
# * * * * *
188
- cron: '30 1 * * 0'
199

2010
jobs:
@@ -32,19 +22,19 @@ jobs:
3222

3323
steps:
3424
- name: Checkout repository
35-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
3626

3727
# Initializes the CodeQL tools for scanning.
3828
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v2
29+
uses: github/codeql-action/init@v3
4030
# Override language selection by uncommenting this and choosing your languages
4131
# with:
4232
# languages: go, javascript, csharp, python, cpp, java, ruby
4333

4434
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
4535
# If this step fails, then you should remove it and run the build manually (see below).
4636
- name: Autobuild
47-
uses: github/codeql-action/autobuild@v2
37+
uses: github/codeql-action/autobuild@v3
4838

4939
# ℹ️ Command-line programs to run using the OS shell.
5040
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -58,4 +48,4 @@ jobs:
5848
# make release
5949

6050
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@v2
51+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)