Skip to content

Commit 2f6cab0

Browse files
authored
Merge pull request #438 from McPringle/master
πŸ“ Add achievement (and fix broken GitHub action)
2 parents 792a79a + f43fa94 commit 2f6cab0

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

β€Ž.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
apply-label:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/github-script@v6
11+
- uses: actions/github-script@v7
1212
with:
1313
script: |
1414
github.rest.issues.addLabels({

β€Ž.github/workflows/validate+deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name: CI
44

5-
# Controls when the action will run.
5+
# Controls when the action will run.
66
on:
77
# Triggers the workflow on push or pull request events but only for the master branch
88
push:
@@ -23,14 +23,14 @@ jobs:
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- uses: bahmutov/npm-install@v1
2828

2929
# Runs a single command using the runners shell
3030
- name: run gulp
3131
run: npm run gulp
3232

33-
- uses: actions/upload-artifact@v2
33+
- uses: actions/upload-artifact@v4
3434
with:
3535
name: Feed-and-Projects
3636
path: |
@@ -44,14 +44,14 @@ jobs:
4444
if: github.event_name == 'push' && github.repository == 'hackergarten/hackergarten.github.io' && github.ref == 'refs/heads/master'
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v4
4848

49-
- uses: actions/download-artifact@v2
49+
- uses: actions/download-artifact@v4
5050
with:
5151
name: Feed-and-Projects
52-
52+
5353
- name: Deploy πŸš€
54-
uses: JamesIves/github-pages-deploy-action@4.0.0
54+
uses: JamesIves/github-pages-deploy-action@v4
5555
with:
5656
branch: gh-pages # The branch the action should deploy to.
57-
folder: . # The folder the action should deploy.
57+
folder: . # The folder the action should deploy.

β€Ževents.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@
8383
}
8484
],
8585
"achievements": [
86+
{
87+
"title": "Apus (Social Media Wall): Add speaker profile picture to conference sessions",
88+
"url": "https://github.com/McPringle/apus/commit/050950cc40244948bdfa1af46bbe965b2a2d88d2"
89+
}
8690
]
8791
},
8892
{

0 commit comments

Comments
Β (0)