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

Commit 82f76e0

Browse files
committed
Bump GitHub Actions
actions/cache@v2 is now depricated and fails CI
1 parent cf98091 commit 82f76e0

20 files changed

+53
-73
lines changed

.action_templates/e2e-fork-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ jobs:
55
# dependabot gets a read only github token, and so must use pull_request_target instead of pull_request.
66
if: contains(github.event.pull_request.labels.*.name, 'dependencies') || contains(github.event.pull_request.labels.*.name, 'safe-to-test')
77
steps:
8-
- template: cancel-previous
8+
# - template: cancel-previous
99
- template: checkout-fork
1010
- template: setup-and-install-python
1111
- template: quay-login
1212
- template: set-up-qemu
1313
- template: build-and-push-development-images
1414
- template: tests
1515
steps:
16-
- template: cancel-previous
16+
# - template: cancel-previous
1717
- template: checkout-fork
1818
- template: set-run-status
1919
- template: setup-and-install-python

.action_templates/e2e-pr-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ jobs:
55
# run on master, or if a PR is being created from a branch, or if it has been manually triggered.
66
if: github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
77
steps:
8-
- template: cancel-previous
8+
# - template: cancel-previous
99
- template: checkout
1010
- template: setup-and-install-python
1111
- template: quay-login
1212
- template: set-up-qemu
1313
- template: build-and-push-development-images
1414
- template: tests
1515
steps:
16-
- template: cancel-previous
16+
# - template: cancel-previous
1717
- template: checkout
1818
- template: set-run-status
1919
- template: setup-and-install-python
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}}
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.'

0 commit comments

Comments
 (0)