Skip to content

Commit 4c8d45b

Browse files
authored
Bump GitHub Actions (#1688)
1 parent cf98091 commit 4c8d45b

18 files changed

+53
-53
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
- name: Cancel Previous Runs
2-
uses: styfle/cancel-workflow-action@89f242ee29e10c53a841bfe71cc0ce7b2f065abc # 0.9.0
2+
uses: styfle/cancel-workflow-action@0.12.1
33
with:
44
access_token: ${{ github.token }}

.action_templates/steps/checkout-fork.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Because we are using pull_request_target the Github Secrets will be passed
33
# So code should be reviewed before labeling as "safe-to-test"
44
- name: Checkout Code
5-
uses: actions/checkout@v2
5+
uses: actions/checkout@v4
66
with:
77
ref: ${{github.event.pull_request.head.sha}}
88
repository: ${{github.event.pull_request.head.repo.full_name}}

.action_templates/steps/checkout.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
- name: Checkout Code
2-
uses: actions/checkout@v2
2+
uses: actions/checkout@v4
33
with:
44
submodules: true

.action_templates/steps/quay-login.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- name: Login to Quay.io
2-
uses: docker/login-action@v1
2+
uses: docker/login-action@v3
33
with:
44
registry: quay.io
55
username: ${{ secrets.QUAY_USERNAME }}

.action_templates/steps/set-run-status.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# see https://github.com/actions/runner/issues/432
88
- name: Restore last run status
99
id: last_run
10-
uses: actions/cache@v2
10+
uses: actions/cache@v4
1111
with:
1212
path: last_run_status
1313
key: ${{ github.run_id }}-${{ matrix.test-name }}-${{ matrix.distro }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- name: Set up QEMU
2-
uses: docker/setup-qemu-action@v2
2+
uses: docker/setup-qemu-action@v3

.action_templates/steps/setup-and-install-python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
- name: Setup Python
2-
uses: actions/setup-python@v2
2+
uses: actions/setup-python@v5
33
with:
44
python-version: '3.10.4'
55
- name: Cache Dependencies
6-
uses: actions/cache@v2
6+
uses: actions/cache@v4
77
with:
88
path: ~/.cache/pip
99
key: ${{ hashFiles('requirements.txt') }}

.github/workflows/close-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
stale:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/stale@v3
13+
- uses: actions/stale@v9
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
stale-issue-message: 'This issue is being marked stale because it has been open for 60 days with no activity. Please comment if this issue is still affecting you. If there is no change, this issue will be closed in 30 days.'

.github/workflows/code-health.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
Mypy:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919

2020
- name: Mypy linting
2121
uses: jpetrucciani/mypy-check@179fdad632bf3ccf4cabb7ee4307ef25e51d2f96
@@ -30,4 +30,4 @@ jobs:
3030
with:
3131
go-version: stable
3232
- name: golangci-lint
33-
uses: golangci/golangci-lint-action@v6
33+
uses: golangci/golangci-lint-action@v6

.github/workflows/comment-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: startsWith(github.event.pull_request.title, 'Release MongoDB Kubernetes Operator')
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/github-script@v3
12+
- uses: actions/github-script@v7
1313
with:
1414
github-token: ${{ secrets.GITHUB_TOKEN }}
1515
script: |

0 commit comments

Comments
 (0)