Skip to content

Commit dec0981

Browse files
authored
Bump and delete stale workflow (#1176)
1 parent da8910a commit dec0981

4 files changed

Lines changed: 9 additions & 23 deletions

File tree

.github/workflows/ auto-merge.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/mirror_data_archive.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
ATTACK_DATA_ARCHIVE_FILE: attack_data.tar.zstd
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
# We must EXPLICITLY specificy lfs: true. It defaults to false
1919
with:
2020
lfs: true
2121

2222
- name: Setup AWS CLI and Credentials
23-
uses: aws-actions/configure-aws-credentials@v4
23+
uses: aws-actions/configure-aws-credentials@v6
2424
with:
2525
aws-access-key-id: ${{ secrets.ACCESS_KEY}}
2626
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}

.github/workflows/replay-datasets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0 # Fetch full history for file change detection
2525

2626
- name: Pull Git LFS files
2727
run: git lfs pull
2828

2929
- name: Set up Python
30-
uses: actions/setup-python@v4
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.9'
3333

.github/workflows/validate.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
lfs: 'false'
3636

3737
- name: Set up Python
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: '3.9'
4141
cache: 'pip'
@@ -55,7 +55,7 @@ jobs:
5555
# PR-specific success/failure handling
5656
- name: Comment PR on validation failure
5757
if: failure() && github.event_name == 'pull_request'
58-
uses: actions/github-script@v7
58+
uses: actions/github-script@v9
5959
with:
6060
script: |
6161
const { owner, repo, number } = context.issue;
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Comment PR on validation success
7777
if: success() && github.event_name == 'pull_request'
78-
uses: actions/github-script@v7
78+
uses: actions/github-script@v9
7979
with:
8080
script: |
8181
const { owner, repo, number } = context.issue;
@@ -96,7 +96,7 @@ jobs:
9696
# Push-specific failure handling (create issue)
9797
- name: Create issue on validation failure (Push)
9898
if: failure() && github.event_name == 'push'
99-
uses: actions/github-script@v7
99+
uses: actions/github-script@v9
100100
with:
101101
script: |
102102
const title = `🚨 Attack Data Validation Failed - ${new Date().toISOString().split('T')[0]}`;

0 commit comments

Comments
 (0)