Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/ auto-merge.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/mirror_data_archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
ATTACK_DATA_ARCHIVE_FILE: attack_data.tar.zstd
steps:
- name: Checkout Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
# We must EXPLICITLY specificy lfs: true. It defaults to false
with:
lfs: true

- name: Setup AWS CLI and Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
aws-access-key-id: ${{ secrets.ACCESS_KEY}}
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/replay-datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch full history for file change detection

- name: Pull Git LFS files
run: git lfs pull

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.9'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: 'false'

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.9'
cache: 'pip'
Expand All @@ -55,7 +55,7 @@ jobs:
# PR-specific success/failure handling
- name: Comment PR on validation failure
if: failure() && github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand All @@ -75,7 +75,7 @@ jobs:

- name: Comment PR on validation success
if: success() && github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand All @@ -96,7 +96,7 @@ jobs:
# Push-specific failure handling (create issue)
- name: Create issue on validation failure (Push)
if: failure() && github.event_name == 'push'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const title = `🚨 Attack Data Validation Failed - ${new Date().toISOString().split('T')[0]}`;
Expand Down
Loading