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
4 changes: 2 additions & 2 deletions .github/workflows/archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: "Update Archive"
uses: martinthomson/i-d-template@v1
Expand All @@ -28,6 +28,6 @@ jobs:
token: ${{ github.token }}

- name: "Save Archive"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: archive.json
8 changes: 5 additions & 3 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:
- CONTRIBUTING.md
- LICENSE.md
- .gitignore
- '.github/**'
pull_request:
paths-ignore:
- README.md
- CONTRIBUTING.md
- LICENSE.md
- .gitignore
- '.github/**'

permissions:
contents: write
Expand All @@ -26,14 +28,14 @@ jobs:
VENVDIR: /tmp/.venv
steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: "Setup"
id: setup
run: date -u "+::set-output name=date::%FT%T"

- name: "Caching"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ env.XML2RFC_REFCACHEDIR }}
Expand All @@ -57,7 +59,7 @@ jobs:
token: ${{ github.token }}

- name: "Archive Built Drafts"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: |
draft-*.html
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v6

# See https://github.com/actions/checkout/issues/290
- name: "Get Tag Annotations"
Expand All @@ -22,7 +22,7 @@ jobs:
run: date -u "+::set-output name=date::%FT%T"

- name: "Caching"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ env.XML2RFC_REFCACHEDIR }}
Expand All @@ -44,6 +44,6 @@ jobs:
make: upload

- name: "Archive Submitted Drafts"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: "draft-*-[0-9][0-9].xml"
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: "Update Generated Files"
uses: martinthomson/i-d-template@v1
Expand Down